@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');

/* Logo Styling */
.finqbit-logo {
  height: 56px !important;
  width: auto !important;
  max-width: 250px !important;
  transition: all 0.3s ease;
  text-decoration: none

}

/* Navbar Brand Container */
#jupyterhub-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
}

/* finQbitPlatform Text */
.navbar-text {
  font-family: 'Comfortaa', cursive;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none !important;
  color: var(--bs-body-color) !important;
  transition: all 0.3s ease;
}

.navbar-text:hover {
  color: #f37524 !important;
  transform: scale(1.05);
}

/* Reset and base styles */
/* html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
} */

/* Login Page Logo - Centered and Larger */
#login-main .jpy-logo {
  display: block !important;
  margin: 0 auto 40px auto !important;
  height: 100px !important;
  width: auto !important;
  max-width: 300px !important;
}

/* Login Page Header with Logo */
.login-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}

.login-logo {
  height: 140px !important;
  width: auto !important;
  max-width: 400px !important;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: block;
}

.login-brand-text {
  font-family: 'Comfortaa', cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--bs-body-color);
  margin: 0;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

/* Login Container Centering */
/* #login-main {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: calc(100vh - 56px - 280px) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 20px !important;
  background-color: var(--bs-body-bg);
  flex: 1;
}

.login-form-wrapper {
  width: 100%;
  max-width: 450px !important;
  padding: 0 !important;
} */

/* Auth Form Styling */
/* .auth-form-header {
  text-align: center !important;
  margin-bottom: 30px !important;
}

.auth-form-header h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--bs-body-color);
  margin: 0;
}

.auth-form-body {
  background: var(--bs-body-bg);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--bs-border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left !important;
  margin-top: 20px;
} */

/* Form Controls */
/* .auth-form-body label {
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 8px;
  display: block;
  color: var(--bs-body-color);
}

.auth-form-body .form-control,
.auth-form-body .input-group .form-control {
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  width: 100% !important;
}

.auth-form-body .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Input Group (Password Toggle) */
/* .input-group {
  margin-top: 8px;
  width: 100% !important;
}

.input-group-text {
  background-color: var(--bs-gray-100);
  border: 1px solid var(--bs-border-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.input-group-text:hover {
  background-color: var(--bs-gray-200);
} */ */

/* Submit Button */
/* .auth-form-body .btn-jupyter {
  margin-top: 20px;
  padding: 10px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
  width: 100% !important;
}

.auth-form-body .btn-jupyter:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} */

/* Feedback Widget */
/* .feedback-container {
  position: relative;
  width: 100%;
}

.feedback-widget {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: var(--bs-primary);
}*/

.fa-pulse {
  animation: fa-pulse 1s infinite;
}

@keyframes fa-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Login Terms */
/* .login_terms {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bs-border-color);
  font-size: 14px;
  text-align: left;
}

.login_terms input[type="checkbox"] {
  margin-right: 8px;
}

.login_terms label {
  display: inline;
  margin: 0 !important;
  font-weight: normal;
}

.login_terms a {
  color: var(--bs-primary);
  text-decoration: none;
}

.login_terms a:hover {
  text-decoration: underline;
} */

/* Warning Alerts */
/* #insecure-login-warning {
  margin-bottom: 20px;
  border-radius: 6px;
} */

/* Error Messages */
/* .login_error {
  color: var(--bs-danger);
  font-weight: 500;
  margin-bottom: 15px;
  padding: 12px;
  background-color: var(--bs-danger-bg-subtle);
  border: 1px solid var(--bs-danger-border-subtle);
  border-radius: 6px;
} */

/* Service Login (OAuth) */
/* .service-login {
  text-align: center !important;
  padding: 40px 20px !important;
}

.service-login .btn-jupyter {
  min-width: 280px !important;
  padding: 12px 24px !important;
  font-size: 16px;
  display: inline-block;
  width: auto !important;
} */

/* Footer Styling */
footer.footer {
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-body-bg);
  transition: all 0.3s ease;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
  position: relative;
}

.footer-section {
  display: flex;
  align-items: center;
}

.footer-logo {
  flex: 0 0 auto;
  order: 0;
}

.footer-partner-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.footer-partner-logo:hover {
  transform: scale(1.05);
}

.footer-contact {
  flex: 0 0 auto;
  order: 0;
  position: absolute;
  right: 0;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #f37524;
  color: white !important;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 15px;
}

.footer-contact-link:hover {
  background-color: rgb(206.55, 99.45, 30.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white !important;
  text-decoration: none;
}

.footer-contact-link i {
  font-size: 16px;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bs-border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--bs-body-color);
  opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
    position: static;
  }

  .footer-section {
    width: 100%;
    justify-content: center;
  }

  .footer-logo {
    order: 0;
    flex: none;
    width: 100%;
  }

  .footer-contact {
    order: 0;
    position: static;
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .footer-partner-logo {
    height: 50px;
  }

  .footer-contact-link {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 576px) {
  footer.footer {
    padding: 15px 10px;
  }

  .footer-content {
    gap: 15px;
  }

  .footer-partner-logo {
    height: 40px;
  }

  .footer-contact-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* Responsive Design */
@media (max-width: 576px) {
  #login-main {
    min-height: 100vh !important;
  }

  #login-main .container {
    max-width: 100% !important;
    margin: 20px !important;
  }

  .auth-form-body {
    padding: 20px;
  }

  .login-logo {
    height: 100px !important;
    margin-bottom: 15px !important;
  }

  .login-brand-text {
    font-size: 24px;
  }

  .auth-form-header h1 {
    font-size: 24px;
  }

  .finqbit-logo {
    height: 40px !important;
  }

  .navbar-text {
    font-size: 16px;
  }
}