/* WhatsApp OTP Login Plugin Styles */

.wotp-login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wotp-step {
    display: none;
}

.wotp-step.active {
    display: block;
}

.wotp-field-group {
    margin-bottom: 20px;
}

.wotp-field-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.wotp-field-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.wotp-button {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.wotp-button:hover {
    background-color: #128c7e;
}

.wotp-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.wotp-message {
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

.wotp-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.wotp-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

p.description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
} 