/* newsletter-form.css
   Style moderne et élégant pour le formulaire de newsletter Brevo
*/

.sib_signup_form {
  max-width: 420px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  box-sizing: border-box;
}

.sib_signup_form p {
  margin-bottom: 18px;
  color: #444;
  font-size: 1rem;
}

.sib_signup_form label {
  font-weight: 500;
  color: #444;
}
#sib_signup_form_1 > p:nth-child(2){
    display: none;
}
.sib_signup_form input[type="email"],
.sib_signup_form input[type="text"] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
  font-size: 1rem;
  margin-bottom: 8px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.sib_signup_form input[type="email"]:focus,
.sib_signup_form input[type="text"]:focus {
  border-color: #0073e6;
  background: #fff;
  outline: none;
}

.sib-default-btn {
  background: linear-gradient(90deg, #0073e6 0%, #00b4d8 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,115,230,0.08);
  transition: background 0.2s;
}

.sib-default-btn:hover {
  background: linear-gradient(90deg, #005bb5 0%, #0096c7 100%);
}

.sib_msg_disp {
  margin-bottom: 12px;
  color: #e53935;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 600px) {
  .sib_signup_form {
    padding: 18px 8px;
    box-sizing: border-box;
  }
}
