/* Login Page Styles */
.login-page {
  background: #3e4095;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.login-box {
  width: 400px;
  margin: 0 auto;
}

.login-logo {
  text-align: center;
  margin-bottom: 0;
}

.login-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.login-logo .brand-text {
  color: #3e4095;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.login-card {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
}

.login-card-body {
  padding: 30px;
  background: #fff;
}

.login-box-msg {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #666;
  text-align: center;
}

.input-group {
  margin-bottom: 20px;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #3e4095;
  box-shadow: 0 0 0 0.2rem rgba(62, 64, 149, 0.25);
}

.input-group-text {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.input-group .form-control:not(:last-child) {
  border-right: none;
  border-radius: 8px 0 0 8px;
}

.btn-primary {
  background: #3e4095;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #34367d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(62, 64, 149, 0.4);
}

.alert {
  border-radius: 8px;
  border: none;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.login-footer {
  text-align: center;
  margin-top: 20px;
  color: #6c757d;
  font-size: 14px;
}

.feature-icon {
  background: #3e4095;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: white;
  font-size: 16px;
}

.feature-text {
  text-align: center;
  font-size: 11px;
  color: #6c757d;
  margin-bottom: 10px;
}

.header-section {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/* Focus effects for form elements */
.form-control:focus {
  border-color: #3e4095;
  box-shadow: 0 0 0 0.2rem rgba(62, 64, 149, 0.25);
}