/* Basic styles for the registration form */
.me-fa-wa-register-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-header h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
}

.description {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,124,186,0.1);
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #007cba;
    color: white;
}

.btn-primary:hover {
    background: #005a87;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-link {
    background: none;
    color: #007cba;
    padding: 12px 10px;
    text-decoration: underline;
}

.btn-link:hover {
    color: #005a87;
}

.form-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.register-links {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.register-links a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

.register-links a:hover {
    text-decoration: underline;
}

.register-message {
    margin-top: 15px;
    min-height: 50px;
}

.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.step-header {
    text-align: center;
    margin-bottom: 25px;
}

.step-header h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.phone-display {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
}

.otp-timer {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

#otp-timer {
    font-weight: bold;
    color: #dc3545;
    font-family: monospace;
    font-size: 16px;
}

