.send-otp-btn {
    position: absolute;
    font-size: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #924813;
    color: #fff;
    border: none;
    padding: 5px 5px !important;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-otp-btn:hover:not(.disabled) {
    background-color: #7a3a0f;
}

.send-otp-btn.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* .verify_otp {
    top: 58%;
} */
.verify_otp {
   top: 50%;
   transform: translateY(8%);
   right: 30px;
}

.form-group {
    position: relative;
}

#alert-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    max-width: 300px;
}

.custom-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    background-color: #4caf50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

.custom-alert.alert-danger {
    background-color: #f44336;
}

.custom-alert.alert-success {
    background-color: #4caf50;
}

.custom-alert .close-alert {
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* 🧪 Debug OTP Display */
.debug-otp-display {
    margin-top: 8px;
    animation: slideIn 0.3s ease-out;
}

.debug-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.debug-label {
    color: #856404;
}

.debug-value {
    color: #f44336;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.debug-copy {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.debug-copy:hover {
    background-color: #ffd89b;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add to your existing otp.css */

button[type="submit"].submit-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background-color: #ccc !important;
}

button[type="submit"]:not(.submit-disabled):hover {
    background-color: #0056b3;
}


.otp-input-group {
    position: relative;
    margin-top: 15px;
}

.otp-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.enter_otp {
    width: 100%;
    padding: 12px;
    font-size: 24px;
    letter-spacing: 8px;
    text-align: center;
    border: 2px solid #924813;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.enter_otp:focus {
    outline: none;
    border-color: #7a3a0f;
    box-shadow: 0 0 8px rgba(146, 72, 19, 0.2);
}

.enter_otp::placeholder {
    letter-spacing: 0;
    font-size: 14px;
}

.debug-otp-display {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
    border-radius: 3px;
}
