/* ================================================
   WEB RESERVATIONS LOGIN - ORGANIZED STYLES
   Version: 0.9.6
   Last Updated: January 29, 2026
   ================================================ */

/* ================================================
   1. RESET & BASE STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1E1E1E;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ================================================
   2. HEADER
   ================================================ */
.login-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: transparent;
    z-index: 100;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-header {
    height: 50px;
    display: block;
}

/* ================================================
   3. LOGIN CONTAINER
   ================================================ */
.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
    border: 1px solid #d48800;
}

/* ================================================
   4. BRANDING
   ================================================ */
.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logo {
    height: 72px;
}

.login-box h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 10px;
}

.login-box h2 {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* ================================================
   5. FORM ELEMENTS
   ================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95em;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* ================================================
   6. REMEMBER ME CHECKBOX
   ================================================ */
.remember {
    margin-top: 0;
    margin-bottom: 20px;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95em;
    cursor: pointer;
}

.remember-label input {
    width: 18px;
    height: 18px;
    accent-color: #FFD578;
}

/* ================================================
   7. ERROR MESSAGE
   ================================================ */
.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
    font-size: 0.9em;
}

.error-message.hidden {
    display: none;
}

/* ================================================
   8. BUTTONS
   ================================================ */
.btn-login {
    width: 100%;
    padding: 14px;
    background: #FFD578;
    color: #000000;
    border: 2px solid #FFD578;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #f2c65c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 198, 92, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

/* ================================================
   9. FOOTER
   ================================================ */
.login-footer {
    margin-top: 24px;
    font-size: 0.9em;
    color: #7f8c8d;
    text-align: center;
}

.login-footer a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* ================================================
   10. TEST USERS INFO
   ================================================ */
.test-users {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.test-users p {
    color: #7f8c8d;
    font-size: 0.85em;
    margin: 5px 0;
}

.test-users p:first-child {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}
