body {
  background: linear-gradient(135deg, #2a76bd 0%, #45aaf2 100%);
}

.login-container {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.login-sidebar {
  background-color: #fff;
  padding: 40px;
}

.login-banner {
  background: linear-gradient(45deg, #1e4d78 0%, #3498db 100%);
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.login-logo {
  margin-bottom: 30px;
}

.login-logo span {
  font-size: 28px;
  font-weight: 700;
  color: #2a76bd;
}

.btn-login {
  background: #2a76bd;
  border-color: #2a76bd;
  color: #fff;
  padding: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-login:hover {
  background: #1e4d78;
  box-shadow: 0 5px 15px rgba(42, 118, 189, 0.4);
  transform: translateY(-2px);
}

.form-control {
  padding: 12px;
  border-radius: 10px;
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
}

.input-group-text {
  background-color: #2a76bd;
  color: white;
  border: none;
  border-radius: 10px 0 0 10px;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(42, 118, 189, 0.2);
  border-color: #2a76bd;
}

.remember-me-check {
  border-color: #2a76bd;
  background-color: #f8f9fa;
}

.remember-me-check:checked {
  background-color: #2a76bd;
  border-color: #2a76bd;
}

.remember-me-label {
  font-weight: 600;
  color: #5e6e82;
}

/* Alert styling */
.alert {
  border-radius: 8px;
  border: none;
  margin-bottom: 20px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #842029;
}

/* Using centralized animation from animations.css */
.login-sidebar {
  animation: fadeIn 0.5s ease-in-out;
}

@media (max-width: 768px) {
  .login-banner {
    display: none;
  }
}