/* Registration Form Styles */

.wr-register-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.wr-register-form h2 {
    text-align: center;
    color: #0073aa;
    margin-top: 0;
    margin-bottom: 30px;
}

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

.wr-register-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.wr-register-form input[type="text"],
.wr-register-form input[type="email"],
.wr-register-form input[type="tel"],
.wr-register-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.wr-register-form input[type="text"]:focus,
.wr-register-form input[type="email"]:focus,
.wr-register-form input[type="tel"]:focus,
.wr-register-form input[type="password"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0,115,170,0.3);
}

.wr-register-form button {
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wr-register-form button:hover {
    background-color: #005a87;
}

.wr-register-form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#wr-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

#wr-message.error {
    background-color: #fee;
    color: #c00;
    border: 1px solid #fcc;
}

#wr-message.success {
    background-color: #efe;
    color: #060;
    border: 1px solid #cfc;
}

#wr-message.loading {
    background-color: #e8f4f8;
    color: #0073aa;
    border: 1px solid #b3d9e8;
}

/* OTP Input */
#wr-otp {
    font-size: 24px;
    letter-spacing: 10px;
    text-align: center;
    font-weight: bold;
}

/* Section Visibility */
.wr-form-section-hidden {
    display: none !important;
}

@media (max-width: 600px) {
    .wr-register-form {
        margin: 20px 10px;
        padding: 20px;
    }

    .wr-register-form h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .wr-register-form .form-group {
        margin-bottom: 15px;
    }

    .wr-register-form button {
        padding: 10px;
        font-size: 14px;
    }
}
