/**
 * WhatsApp OTP Universal - Main Styles
 */

/* Form Wrapper */
.wotp-login-form-wrapper,
.wotp-signup-form-wrapper {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wotp-login-form-wrapper h3,
.wotp-signup-form-wrapper h3 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Form Group */
.wotp-form-group {
    margin-bottom: 20px;
}

.wotp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.wotp-form-group small {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

/* Phone Input */
.wotp-phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.wotp-phone-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.wotp-phone-input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

/* OTP Input */
.wotp-otp-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 18px;
    letter-spacing: 5px;
    font-weight: bold;
    text-align: center;
    transition: border-color 0.3s;
    font-family: 'Courier New', monospace;
}

.wotp-otp-input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

/* Buttons */
.wotp-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.wotp-btn-primary {
    background: #25D366;
    color: white;
}

.wotp-btn-primary:hover {
    background: #20a853;
}

.wotp-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.wotp-btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.wotp-btn-secondary:hover {
    background: #e0e0e0;
}

.wotp-btn-secondary:disabled {
    background: #f9f9f9;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Messages */
.wotp-message {
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 14px;
    border-left: 4px solid;
}

.wotp-message.wotp-error {
    background: #fee;
    color: #c00;
    border-left-color: #c00;
}

.wotp-message.wotp-success {
    background: #efe;
    color: #0a0;
    border-left-color: #0a0;
}

.wotp-message.wotp-info {
    background: #eef;
    color: #00c;
    border-left-color: #00c;
}

/* Info Box */
.wotp-info {
    padding: 12px;
    background: #f0f8ff;
    border-left: 4px solid #2196F3;
    color: #333;
    margin: 15px 0;
    font-size: 14px;
}

/* Form Container */
.wotp-form {
    display: flex;
    flex-direction: column;
}

/* Responsive */
@media (max-width: 576px) {
    .wotp-login-form-wrapper,
    .wotp-signup-form-wrapper {
        padding: 20px;
    }

    .wotp-login-form-wrapper h3,
    .wotp-signup-form-wrapper h3 {
        font-size: 20px;
    }

    .wotp-btn {
        width: 100%;
    }
}
