/*
 * WigVo — Page: Auth Portal (Luxury Editorial Styling)
 * Location: views/css/pages/auth-portal.css
 */

.shop-hero-banner h1 {
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 800 !important;
}

.shop-hero-banner p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.auth-portal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(85vh - 120px);
    padding: 48px 16px;
    box-sizing: border-box;
    background: radial-gradient(circle at 50% 30%, rgba(233, 30, 99, 0.05) 0%, rgba(255, 255, 255, 0) 70%), #fafafa;
}

.auth-card-box {
    max-width: 440px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 50px -12px rgba(233, 30, 99, 0.12), 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(233, 30, 99, 0.08);
    position: relative;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card-box:hover {
    box-shadow: 0 24px 60px -12px rgba(233, 30, 99, 0.18), 0 6px 20px rgba(0, 0, 0, 0.04);
}

.auth-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-align: center;
    color: #111827;
    margin-bottom: 6px;
    width: 100%;
}

.auth-brand-badge span {
    color: var(--berry-pink, #e91e63);
}

.auth-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}

.auth-field-group {
    margin-bottom: 20px;
}

.auth-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.auth-input-wrapper {
    position: relative;
    width: 100%;
}

.auth-input {
    width: 100% !important;
    height: 48px !important;
    border-radius: 12px !important;
    border: 1.5px solid #e5e7eb !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    color: #111827 !important;
    background: #f9fafb !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.auth-input:focus {
    border-color: var(--berry-pink, #e91e63) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12) !important;
}

.auth-input-password {
    padding-right: 46px !important;
}

.auth-pwd-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.auth-pwd-toggle:hover {
    color: var(--berry-pink, #e91e63);
}

.auth-submit-btn {
    width: 100% !important;
    height: 50px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px -4px rgba(233, 30, 99, 0.35) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 12px !important;
}

.auth-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px -4px rgba(233, 30, 99, 0.45) !important;
}

.auth-submit-btn:active {
    transform: translateY(0) !important;
}

.auth-footer-text {
    text-align: center;
    margin-top: 24px;
    font-size: 13.5px;
    color: #6b7280;
}

.auth-footer-link {
    color: var(--berry-pink, #e91e63);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.auth-footer-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.auth-alert-box {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: authFadeIn 0.3s ease-in-out;
}

@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* LUXURY OTP 6-BOX GRID */
.otp-box-input {
    width: 46px !important;
    height: 54px !important;
    border-radius: 12px !important;
    border: 1.5px solid #e5e7eb !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    text-align: center !important;
    color: #111827 !important;
    background: #f9fafb !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

.otp-box-input:focus {
    border-color: #e91e63 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15) !important;
}
