/* Stock productos*/

.notify-restock-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
  }
  
  .notify-restock-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin: 0 0 10px;
  }
  
  .notify-restock-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  .notify-restock-form button {
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .notify-restock-form button:hover {
    background-color: #ff5501;
  }
  