.otp-login-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.otp-step {
    display: none;
}

.otp-step.active {
    display: block;
}

.otp-login-container h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #9a2f23;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.otp-digit {
    width: 40px !important;
    height: 40px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #ddd !important;
    border-radius: 8px;
    padding: 0 !important;
    transition: all 0.3s ease;
}

.otp-digit:focus {
    border-color: #9a2f23 !important;
    box-shadow: 0 0 0 3px rgba(154, 47, 35, 0.1);
    outline: none;
}

.otp-digit.filled {
    border-color: #9a2f23 !important;
    background-color: #f0f9f4;
}

.otp-button {
    width: 100%;
    padding: 12px;
    background: #9a2f23;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 10px;
}

.otp-button:hover {
    background: #006330;
}

.otp-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.otp-button-secondary {
    width: 100%;
    padding: 12px;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.otp-button-secondary:hover {
    background: #e0e0e0;
}

.otp-message {
	font-size: 13px;
    padding: 5px 12px 5px 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.otp-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.otp-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.otp-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}