/*----------------------------------*
 * Login Page Styles
 * Used by: auth/login.php
 *---------------------------------*/

body {
  background: linear-gradient(180deg, #ffffff 0%, #e61c1c 50%, #cecf7b 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.3) 0%,
    rgba(107, 114, 128, 0.3) 100%
  );
  backdrop-filter: blur(100px);
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.login-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-container h1 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form label {
  color: #555;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: -12px;
}

.login-form input {
  padding: 12px 16px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.login-form input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-form button {
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 10px;
}

.login-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.login-form button:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .login-container {
    padding: 30px 20px;
  }

  .login-container h1 {
    font-size: 24px;
  }
}
