/* OTP Login Form Styles */
.oel-login-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.oel-login-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 24px;
}

.oel-form-group {
    margin-bottom: 20px;
}

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

.oel-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.oel-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.oel-input.error {
    border-color: #dc3232;
}

.oel-button {
    width: 100%;
    padding: 12px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.oel-button:hover {
    background-color: #005a87;
}

.oel-button:disabled {
    background-color: #a0a5aa;
    cursor: not-allowed;
}

.oel-button-link {
    background: none;
    border: none;
    color: #007cba;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-left: 15px;
}

.oel-button-link:hover {
    color: #005a87;
}

.oel-message {
    padding: 12px;
    margin-top: 20px;
    border-radius: 4px;
    text-align: center;
}

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

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

.oel-otp-timer {
    margin-top: 5px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 480px) {
    .oel-login-container {
        margin: 20px;
        padding: 20px;
    }
    
    .oel-button-link {
        display: block;
        margin: 10px 0 0 0;
        text-align: center;
    }
}