.email-verification-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.email-verification-row input {
    flex: 1;
    min-width: 0;
}

.btn-email-verify {
    min-width: 130px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #1e3a8a;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.btn-email-verify:hover {
    background: #172f70;
}

.btn-email-verify:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.email-verification-status {
    display: block;
    min-height: 20px;
    margin-top: 7px;
    font-size: 14px;
}

.email-verification-status.verified {
    color: #15803d;
    font-weight: 700;
}

.email-verification-status.error {
    color: #dc2626;
    font-weight: 600;
}

.btn-form-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.otp-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
}

.otp-card {
    width: 430px;
    max-width: 100%;
    padding: 32px;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.otp-icon {
    display: flex;
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef4ff;
    font-size: 34px;
}

.otp-card h2 {
    margin-bottom: 10px;
    color: #1e3a8a;
}

.otp-card p {
    color: #666666;
    line-height: 1.6;
}

#otpEmail {
    color: #1e3a8a;
}

#otpInput {
    width: 100%;
    box-sizing: border-box;
    margin-top: 22px;
    padding: 15px;
    border: 2px solid #d9d9d9;
    border-radius: 10px;
    outline: none;
    text-align: center;
    font-size: 22px;
    letter-spacing: 8px;
}

#otpInput:focus {
    border-color: #1e3a8a;
}

.otp-timer {
    margin-top: 15px;
    color: #666666;
    font-size: 14px;
}

#otpCountdown {
    color: #dc2626;
    font-weight: 700;
}

.otp-error {
    min-height: 20px;
    margin-top: 12px;
    color: #dc2626;
    font-size: 14px;
}

.otp-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.otp-primary,
.otp-secondary {
    flex: 1;
    padding: 13px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    font-weight: 600;
}

.otp-primary {
    background: #1e3a8a;
    color: #ffffff;
}

.otp-secondary {
    background: #ececec;
    color: #333333;
}

.otp-resend {
    margin-top: 18px;
    border: none;
    background: none;
    color: #1e3a8a;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 600px) {
    .email-verification-row {
        flex-direction: column;
    }

    .btn-email-verify {
        min-height: 44px;
    }

    .otp-card {
        padding: 24px 18px;
    }
}