/* =========================================
   Pixalley — Auth Pages (Register, Login, Reset)
   Extends landing.css
   ========================================= */

.auth-wrap {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
}

.auth-box {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
}

.auth-box.wide { max-width: 600px; }

.auth-box h1 {
    text-align: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.auth-box .sub {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-box .form-group { margin-bottom: 16px; }
.auth-box label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
}
.auth-box input, .auth-box select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.15s;
    background: #fff;
    box-sizing: border-box;
}
.auth-box input:focus, .auth-box select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(51, 153, 204, 0.1);
}

.auth-box .help {
    display: block;
    color: var(--text-light);
    font-size: 12px;
    margin-top: 4px;
}

.auth-box .btn-block {
    width: 100%;
    padding: 13px;
    font-size: 15px;
    margin-top: 10px;
}

.auth-box .divider {
    text-align: center;
    margin: 20px 0 16px;
    color: var(--text-light);
    font-size: 13px;
    position: relative;
}
.auth-box .divider::before, .auth-box .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #eee;
}
.auth-box .divider::before { left: 0; }
.auth-box .divider::after { right: 0; }

.auth-box .footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.auth-box .early-bird-tag {
    background: linear-gradient(90deg, #ff6600, #ff9900);
    color: #fff;
    padding: 10px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    margin-bottom: 20px;
}

.flash {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    font-size: 14px;
    border: 1px solid transparent;
}
.flash-success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.flash-error   { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }
.flash-warning { background: #fff3cd; color: #856404; border-color: #ffeaa7; }
.flash-info    { background: #d1ecf1; color: #0c5460; border-color: #bee5eb; }

/* Verification banner (shown to logged-in users who haven't verified) */
.verify-banner {
    background: #fff3cd;
    color: #856404;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #ffeaa7;
}
.verify-banner a {
    color: #b77a00;
    font-weight: 600;
    text-decoration: underline;
}
