/* 2fa-setup.css - Full Split-Screen Branded 2FA Setup UI (Two-Step Flow) */

.cazp-login-right-side h1,
.cazp-login-right-side h2,
.cazp-login-right-side h3,
.cazp-login-right-side h4,
.cazp-login-right-side h5,
.cazp-login-right-side h6 {
    font-family: 'DM Serif Text', Georgia, "Times New Roman", serif !important;
    padding-bottom: 10px !important;
    line-height: 1em !important;
}

/* --- Layout CSS moved to layout.css --- */



/* 5. Steps & Transitions */
.cazp-setup-step {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    flex: 1;
}

.cazp-setup-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#cazp-2fa-step-qr.active {
    display: block;
}

/* 6. Components */
.cazp-lock-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -15px;
}

.cazp-lock-icon {
    width: 64px;
    height: 64px;
    background: #fdf2f2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b1d22;
    font-size: 24px;
    box-shadow: 0 8px 15px rgba(139, 29, 34, 0.08);
}

.cazp-2fa-setup-header {
    text-align: center;
    margin-bottom: 30px;
}

.cazp-2fa-setup-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a0608;
    margin-bottom: 8px;
}

.cazp-2fa-setup-header p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Authenticator App Links */
.cazp-auth-apps {
    display: flex;
    justify-content: center;
    gap: 15px;

}

.cazp-app-link {
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.cazp-app-link:hover {
    transform: translateY(-3px);
}

.cazp-app-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    background: #fff;
    border: 1px solid #f0e6e6;
    transition: all 0.3s ease;
}

.cazp-app-circle svg {
    width: 24px;
    height: 24px;
}

/* App Brand Colors */
.cazp-google-auth .cazp-app-circle {
    color: #4285F4;
}

.cazp-authy .cazp-app-circle {
    color: #E22E31;
}

.cazp-ms-auth .cazp-app-circle {
    color: #0078D4;
}

.cazp-app-link:hover .cazp-app-circle {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    border-color: #d8caca;
}

/* 7. QR View Styles */
.cazp-2fa-qr-section {
    background: #fdfbfb;
    border: 1px solid #f0e6e6;
    border-radius: 16px;
    padding-top: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.cazp-2fa-qr-code {
    background: #fff;

    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.cazp-2fa-qr-code img {
    display: block;
    width: 200px;
    height: 200px;
}

.cazp-2fa-qr-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    display: none;
}

.cazp-2fa-manual-key {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px dashed #eca9ad;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

/* Buttons */
.cazp-modern-btn {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #1a0608 0%, #8b1d22 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 29, 34, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.cazp-modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(139, 29, 34, 0.3);
}

.cazp-back-to-qr-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: #8b1d22;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.8;
}

.cazp-back-to-qr-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

/* 8. Verification View Styles */
.cazp-form-group {
    margin-bottom: 25px;
}

.cazp-form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

/* .cazp-2fa-verify-input styles moved to layout.css for global consistency */

.cazp-2fa-response {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

.cazp-form-container {
    padding-bottom: 25px;
}

.cazp-login-right-side {
    padding: 25px;
}