/* style/login.css */

/* Variables for consistent styling */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --bg-dark: #0d0d0d; /* Inherited from shared.css body */
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

/* Page-specific styles for .page-login */
.page-login {
  color: var(--text-color-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if body background is not fully inherited */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Fixed nav bar spacing */
.page-login__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a40 100%); /* Dark blue gradient */
  text-align: center;
  overflow: hidden; /* Ensure no overflow */
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-login__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-login__description {
  font-size: 1.2em;
  color: var(--text-color-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login__form-wrapper {
  background: var(--card-bg-dark);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-login__form-title {
  color: var(--primary-color);
  font-size: 2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-login__login-form {
  width: 100%;
  text-align: left;
}

.page-login__form-group {
  margin-bottom: 20px;
}

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color-light);
  font-weight: bold;
}

.page-login__form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--text-color-light);
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-login__form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}