/* Modern Login Styles */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 400px;
}

.login-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header .logo {
  margin-bottom: 10px;
  }

.login-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.login-header p {
  font-size: 14px;
  color: #718096;
}

.input-group {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.input-group-text {
  background-color: white;
  border: 1px solid #e2e8f0;
  color: #718096;
}

.form-control {
  border: 1px solid #e2e8f0;
  padding: 12px;
  height: auto;
  font-size: 14px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #667eea;
}

.login-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s;
}

.login-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.login-btn:focus {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.login-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #718096;
}

.login-footer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

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

.toggle-password {
  cursor: pointer;
  padding: 12px;
}

.toggle-password:hover {
  color: #667eea;
}

.alert {
  margin-bottom: 20px;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .login-box {
    padding: 30px 20px;
  }
  
  .login-header h2 {
    font-size: 22px;
  }
}