/* Login Page Redesign - Premium Aesthetics */

:root {
  --accent-color: #F2930E;
  --accent-hover: #d17e0c;
  --glass-bg: rgba(25, 41, 61, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-muted: rgba(255, 255, 255, 0.6);
}

/* Mesh Gradient Background */
.login-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 20px 60px;
  /* background-color: #fff; */
  position: relative;
  overflow: hidden;
}

.login-main::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  filter: blur(150px);
  opacity: 0.1;
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* Glassmorphism Card */
.login-card-wrapper {
  position: relative;
  z-index: 1;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.login-card {
  background-color: #19293d;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

/* Typography & Headers */
.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.login-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.login-header .logo-img {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(242, 147, 14, 0.3));
}

/* Form Styles */
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label i {
  color: var(--accent-color);
  font-size: 16px;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(242, 147, 14, 0.15);
  color: #ffffff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* Separator */
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.forget_link:hover{
  text-decoration: underline !important; 
}
.or-text {
  padding: 0 15px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

/* Button & Actions */
.custom-btn {
  background: var(--accent-color);
  border: none;
  border-radius: 12px;
  padding: 10px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.custom-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(242, 147, 14, 0.4);
}

.btn-google {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 80%;
  margin: 0 auto;
}

.btn-google:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
}

.btn-google img {
  height: 20px;
}

.btn-google span {
  color: #19293d;
  font-weight: 600;
  font-size: 14px;
}

.footer-link-text {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 25px;
  text-align: center;
}

.footer-link-text a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.footer-link-text a:hover {
  text-decoration: underline;
}

/* Responsive Refinements */
@media (max-width: 576px) {
  .login-card {
    padding: 30px 20px;
  }

  .login-header h3 {
    font-size: 28px;
  }

  .login-card-wrapper {
    padding: 0 10px;
  }
}