/* Auth Styles for 가평 수상레저 모음 */
:root {
    --input-border: #e0e0e0;
    --input-focus: #1e88e5;
    --input-background: #f9f9f9;
}

/* Auth Container */
.auth-section {
    background-color: var(--background);
    padding: 3rem 1rem;
    min-height: calc(100vh - 60px - 180px); /* Adjust for header and footer */
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin: 0 auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Form Styles */
.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius);
    background-color: var(--input-background);
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--input-focus);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-actions {
    margin-top: 2rem;
}

.btn-primary {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.form-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-link:hover {
    text-decoration: underline;
}

/* Navigation Brand Link */
.nav-brand-link {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .auth-container {
        padding: 1.5rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
}