
.aa {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
}

.bb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 64, 255, 0.85),
      rgba(0, 64, 255, 0.65));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.hero-subtitle {
  color: white;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 50px);
}

.hero-title {
  color: white;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 80px);
} 






.login-form {
    max-width: 500px;
    margin: 0 auto 100px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.login-form .form-label {
    font-weight: 600;
    color: #333;
}

.login-form .form-control {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
}

.login-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}

.login-btn {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}

.forgot-link {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.student-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 120px;
}

.student-login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.login-header h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-header p {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #007bff;
    font-size: 15px;
}

.input-group input {
    width: 100%;
    padding: 14px 14px 14px 40px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    transition: 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.login-options a {
    color: #007bff;
    text-decoration: none;
}

.login-options a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.login-error {
    background: #fdecea;
    color: #b02a37;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 18px;
    text-align: center;
    font-size: 14px;
}

.signup-link {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}

.signup-link a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

































.footer {
  background: radial-gradient(circle at top, #1e1b4b, #020617);
  color: #c7d2fe;
  padding: 70px 20px 0;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer-brand p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-newsletter form {
  display: flex;
  margin-top: 20px;
}

.footer-newsletter input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  padding: 14px 25px;
  background: #2563eb;
  border: none;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
  font-size: 15px;
  cursor: pointer;
}

.footer-links ul li:hover {
  color: #fff;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 12px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter button {
    margin-top: 10px;
  }
}