/* Modern Authentication Styles */

.auth-layout-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #FFF8E1 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.auth-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 179, 3, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.auth-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.08);
    /* Warm shadow */
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.auth-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    /* Dark Brown */
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.auth-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-input:focus {
    border-color: var(--color-primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 179, 3, 0.1);
}

.btn-auth {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: #2D2720;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 179, 3, 0.3);
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 179, 3, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.95rem;
}

.auth-link {
    color: var(--color-primary-dark);
    font-weight: 700;
    text-decoration: none;
    position: relative;
}

.auth-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.auth-link:hover::after {
    transform: scaleX(1);
}

/* Checkbox Style */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}