/* Authentication Pages Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.auth-box {
    background: rgba(5, 10, 48, 0.95);
    border: 1px solid var(--warning-orange);
    border-radius: 8px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 40px rgba(255, 140, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.auth-header h1 {
    color: var(--warning-orange);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
}

.whitelist-notice {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid var(--warning-orange);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.whitelist-notice p {
    margin: 0;
    color: var(--warning-orange);
    font-size: 0.9rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--warning-orange);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
}

.link {
    color: var(--warning-orange);
    text-decoration: none;
    transition: opacity 0.3s;
}

.link:hover {
    opacity: 0.8;
}

.btn-submit {
    padding: 1rem;
    background: var(--warning-orange);
    color: var(--deep-blue);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #FFA500;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

.auth-footer p {
    margin: 0.5rem 0;
}
