/* style/login.css */

/* Variables for color scheme */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Navy Blue */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark-1: #0d0d0d; /* Assuming shared.css defines --dark-bg-1 as a very dark color */
    --bg-light-1: #f8f8f8;
    --border-color: #e0e0e0;
}

/* Global page-login scope styles */
.page-login {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark-1); /* Inherited from shared.css, ensure consistency */
}

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

/* Section common styles */
.page-login__hero-section,
.page-login__benefits-section,
.page-login__security-section,
.page-login__troubleshooting-section,
.page-login__faq-section,
.page-login__game-preview-section {
    padding: 80px 0;
    position: relative;
    /* Fixed navbar spacing for desktop */
    padding-top: 120px; /* Adjust based on actual header height */
}

.page-login__dark-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-login__hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:bg:Sun 52 Club,login_hero_background,abstract_gold_navy]') no-repeat center center/cover;
    text-align: center;
    color: var(--text-light);
    padding-bottom: 60px;
}

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

.page-login__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-login__login-form-wrapper {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
}

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

.page-login__form-group {
    text-align: left;
}

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

.page-login__form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1em;
    box-sizing: border-box;
}

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

.page-login__form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}