/* ===== SSO EMAIL INPUT POPUP ===== */
.sso-email-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10998;
    backdrop-filter: blur(2px);
}

.sso-email-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10999;
    width: 90%;
    max-width: 450px;
}

.sso-email-popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 35px 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.sso-email-popup-title {
    margin: 0 0 25px 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    letter-spacing: -0.02em;
}

.sso-email-input {
    width: 100%;
    padding: 14px 16px;
    margin: 0 0 25px 0;
    box-sizing: border-box;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    color: #2d3748;
    outline: none;
    transition: all 0.2s ease;
}

.sso-email-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.sso-email-input::placeholder {
    color: #a0aec0;
}

.sso-email-popup-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
}

.sso-email-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sso-email-btn-cancel {
    background: #e2e8f0;
    color: #4a5568;
}

.sso-email-btn-cancel:hover {
    background: #cbd5e0;
    transform: translateY(-1px);
}

.sso-email-btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.sso-email-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.sso-email-btn-submit:active,
.sso-email-btn-cancel:active {
    transform: translateY(0);
}

/* ===== END SSO EMAIL INPUT POPUP ===== */
