/* OTP Modal Styles */
#otp-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#otp-modal-content {
    background: #fff;
    width: 90%;
    max-width: 650px;
    border-radius: 10px;
    padding: 50px;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 118, 66, 0.5); /* Orange glow */
    border-style: solid !important;
    border-color: var(--accent-color) !important;
    border-width: 4px !important;
    font-family: 'Nobel Lexus', sans-serif;
    text-align: center;
}

#otp-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
}

#otp-modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}

#otp-modal-description {
    font-size: 16px;
    color: #444; /* Biraz daha koyu yaparak okunabilirliği artırdım */
    margin-bottom: 30px;
    line-height: 1.6; /* Satır aralığını biraz açtım */
}

.otp-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
}

#otp-code-input {
    width: 60%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    padding: 10px 5px;
    outline: none;
    font-family: 'Nobel Lexus', sans-serif;
}

#otp-timer {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    min-width: 50px;
    text-align: left;
}

.otp-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.otp-btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Nobel Lexus', sans-serif;
    transition: all 0.3s ease;
}

#otp-resend-btn {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
}

#otp-resend-btn:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

#otp-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#otp-confirm-btn {
    background: var(--accent-color, #d47642); /* Fallback to orange if variable not found */
    border: 1px solid var(--accent-color, #d47642);
    color: white;
}

#otp-confirm-btn:hover:not(:disabled) {
    background: #c06538;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 118, 66, 0.3);
}

#otp-confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    border-color: #ccc;
}

#otp-code-input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.otp-error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
    display: none;
}
