/*
 * File: styles/css/login.css
 * Project: avrora26
 * Role: Login page styles
 * Used in: public/login/index.php
 * Depends on: styles/css/style.css
 * Author: Team Avrora
 * Last updated: 13.02.2026
 */

.login-container {
  max-width: 440px;
  margin: 32px auto 64px;
  padding: 22px 22px 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.login-container h1 {
  text-align: center;
  margin-bottom: 16px;
}

.login-container label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

.login-container input[type="email"],
.login-container input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  outline: none;
  background: #fff;
}

.login-container input[type="email"]:focus,
.login-container input[type="password"]:focus {
  border-color: rgba(255,107,107,0.9);
  box-shadow: 0 0 0 4px rgba(255,107,107,0.18);
}

.login-container button[type="submit"] {
  width: 100%;
  margin-top: 18px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: #ff6b6b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.login-container button[type="submit"]:hover {
  background: #ff5252;
  transform: translateY(-1px);
}

.login-container .error {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 10px 12px;
  border-radius: 12px;
  margin: 12px 0 2px;
  text-align: center;
}

.login-note {
  margin-top: 14px;
  text-align: center;
  color: #444;
}

.login-note a {
  color: #007bff;
  text-decoration: none;
}

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

