/* --- CSS RIÊNG CHO TRANG ĐĂNG NHẬP (login.css) --- */

#login-container {
  width: 100%;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Khung bọc form đăng nhập */
.login-card {
  background: #fff;
  width: 420px;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.login-card h2 {
  color: #3e2723;
  font-size: 24px;
  margin: 0 0 8px 0;
  text-align: center;
}

.login-subtitle {
  color: #777;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}

/* Cấu trúc các ô input */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #6f5946;
  box-shadow: 0 0 5px rgba(111, 89, 70, 0.15);
}

/* Nút bấm Đăng nhập */
.btn-login {
  background: #6f5946;
  color: #fff;
  border: none;
  padding: 13px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 10px;
}

.btn-login:hover {
  background: #5d4a3a;
}

/* Chân form */
.login-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}

.login-footer a {
  color: #6f5946;
  text-decoration: none;
  font-weight: 600;
}

.login-footer a:hover {
  text-decoration: underline;
}