/* =============================================================================
   AUTH / LOGIN / REGISTRATION — login-page.php + templates/auth/*
   Applied: body.page-template-login-page, woocommerce-account, lost-password
   Key selectors: .social-login-buttoons | .vibebp_registration_form
                  #student-dashboard-popup | .lost-password-section
                  .without-login | .mobile-style-user-icon
   ============================================================================= */

/* ---- Social login buttons ---- */
.social-login-buttoons {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.social-login-buttoons a {
  width: 100%;
  display: flex !important;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 200px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #555555 !important;
  padding: 12px 10px;
  box-shadow: 0px 0px 40px 0px #5555550a !important;
  transition: 0.3s;
}
.social-login-buttoons a:hover {
  opacity: 0.7;
}
.social-login-buttoons img {
  width: 20px !important;
}
.social-login-buttoons .facebook-login-button {
  background: #1877f2;
  color: #ffffff !important;
  transition: 0.3s;
}

/* ---- Hide WooCommerce login section (replaced by custom) ---- */
.e-woocommerce-login-section {
  display: none !important;
}

/* ---- Registration form layout ---- */
.vibebp_registration_form
  form
  .vibebp_registration_field_wrap
  .password_fields {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 15px !important;
}
.vibebp_registration_form .password_fields .vibebp_registration_field {
  width: 50% !important;
}
@media only screen and (max-width: 413px) {
  .vibebp_registration_form
    form
    .vibebp_registration_field_wrap
    .password_fields {
    flex-wrap: wrap !important;
  }
  .vibebp_registration_form .password_fields .vibebp_registration_field {
    width: 100% !important;
  }
}

/* ---- Student dashboard popup menu ---- */
#student-dashboard-popup {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px 0px #0000001a;
  width: 300px;
  padding: 25px;
  border-radius: 24px;
  z-index: 1000;
  transition: opacity 0.3s ease;
  right: 15px;
  top: 90px;
}
#student-dashboard-popup ul {
  list-style-type: none;
}
#studentprofilbutton {
  letter-spacing: 1px !important;
  transition: 0.3s;
}
#studentprofilebutton:hover,
#studentprofilebutton:focus,
#studentprofilebutton:focus-visible {
  box-shadow: 0px 0px 0px 4px rgb(249 163 26 / 30%);
}

/* ---- Lost password page ---- */
.lost-password-section input {
  padding: 8px 10px !important;
  border: 1px solid #ced4da !important;
  height: 38px !important;
  border-radius: 4px !important;
  width: 100% !important;
}
.lost-password-section input[type="submit"] {
  background: #324964 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  line-height: 19px !important;
  height: 38px !important;
  transition: 0.3s;
}
.lost-password-section input[type="submit"]:hover {
  background: #f9a31a !important;
}
.lost-password-section .back-to-login {
  margin-top: 30px !important;
  margin-bottom: 0px !important;
  text-align: center !important;
}
.lost-password-section .back-to-login a {
  font-size: 16px;
  font-weight: 400;
  color: #3b5374;
  transition: 0.3s;
}
.lost-password-section .back-to-login a:hover {
  color: #f9a31a;
}

/* ---- Without-login link area ---- */
@media only screen and (max-width: 767px) {
  .without-login {
    margin-left: 17px !important;
    margin-top: 20px !important;
  }
  .without-login a {
    min-width: 180px !important;
  }
  .mobile-style-user-icon {
    padding-left: 20px !important;
    justify-content: start !important;
    margin-top: 20px !important;
  }
  .social-login-buttoons {
    padding: 20px;
  }
  .social-login-buttoons a {
    font-size: 16px !important;
  }
  #student-dashboard-popup {
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px 0px #0000001a;
    width: 100%;
    padding: 25px;
    border-radius: 0px;
    z-index: 1000;
    transition: opacity 0.3s ease;
    top: 76px;
    left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .social-login-buttoons a {
    font-size: 12px !important;
  }
}
