<style type="text/css">
/* ALERT STYLES */
.alert {
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.alert-show {
  display: block;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

/* SPINNER ON BUTTON */
button.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}







.social-login-box {
    text-align: center;
    margin: 30px 0;
}

.social-login-box h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.social-btn {
    display: block;
    margin: 10px auto;
    padding: 10px 15px;
    width: 250px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    transition: background 0.3s ease;
}

.social-btn img {
    margin-right: 8px;
    vertical-align: middle;
}

.social-btn.google {
    background: #db4437;
}

.social-btn.google:hover {
    background: #c33d2e;
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.facebook:hover {
    background: #2d4373;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.twitter:hover {
    background: #0d95e8;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.divider::before, .divider::after {
    content: "";
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 50%;
    width: 40%;
}
.divider::before {
    left: 0;
}
.divider::after {
    right: 0;
}
.divider span {
    background: #fff;
    padding: 0 10px;
    color: #888;
}


/* Modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

/* Modal content */
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Close button */
.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
}

.social-btn {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-btn img {
    margin-right: 8px;
    vertical-align: middle;
}

.social-btn.google { background: #db4437; }
.social-btn.google:hover { background: #c33d2e; }

.social-btn.facebook { background: #3b5998; }
.social-btn.facebook:hover { background: #2d4373; }

.social-btn.twitter { background: #1da1f2; }
.social-btn.twitter:hover { background: #0d95e8; }

.open-login-btn {
    background: #007bff;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.alert {
  background: #f8f9fa;
  color: #333;
  margin-top: 15px;
  padding: 10px;
  border-left: 5px solid #28a745;
  transition: all 0.3s ease-in-out;
}

.alert-success {
  border-color: #28a745;
  color: #155724;
  background: #d4edda;
}

.alert-warning {
  border-color: #ffc107;
  color: #856404;
  background: #fff3cd;
}

.alert-danger {
  border-color: #dc3545;
  color: #721c24;
  background: #f8d7da;
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



.alert {
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}



.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #fff;
}
 .newsletter {
      background: #fff;
      padding: 40px 20px;
      text-align: center;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
    }
    .newsletter input[type="email"] {
      padding: 10px;
      width: 300px;
      max-width: 90%;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-right: 10px;
    }
    .newsletter button {
      background-color: #00A859;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
    }
    .newsletter button:hover {
      background-color: #007B3A;
    }
    .testimonials {
      padding: 40px 20px;
      background: #f0f0f0;
      text-align: center;
    }
    .testimonial {
      max-width: 700px;
      margin: 0 auto 30px;
      font-style: italic;
      color: #333;
    }
    .testimonial-author {
      font-weight: bold;
      margin-top: 10px;
    }
    /* Subscribe button base style */
#newsletterForm button {
  background-color: #28a745; /* GiDiProperty green */
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#newsletterForm button:hover {
  background-color: #218838;
}

/* Disabled state */
#newsletterForm button:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}


</style>