/* style/login.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --accent-color: #EA7C07; /* Màu cho Đăng nhập */
  --background-light: #ffffff;
  --background-dark: #1a1a1a;
}

.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light);
}

.page-login__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-login__light-bg {
  background-color: var(--background-light);
  color: var(--text-color-dark);
}

.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
}

.page-login__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-login__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-login__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-color-light);
  max-width: 700px;
}

.page-login__login-form-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent white for form */
  color: var(--text-color-dark);
}

.page-login__login-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7); /* Darken background image for text readability */
}

.page-login__login-form {
  position: relative;
  z-index: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
}