/* Basic styling for the registration form */
.ocenexvr-registration-form-wrap {
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ocenexvr-registration-form-wrap h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 26px;
}

.ocenexvr-registration-form-wrap p {
    margin-bottom: 15px;
}

.ocenexvr-registration-form-wrap label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.ocenexvr-registration-form-wrap input[type="text"],
.ocenexvr-registration-form-wrap input[type="email"],
.ocenexvr-registration-form-wrap input[type="password"],
.ocenexvr-registration-form-wrap select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't expand width */
    font-size: 16px;
    color: #333;
    transition: border-color 0.2s ease-in-out;
}

.ocenexvr-registration-form-wrap input[type="text"]:focus,
.ocenexvr-registration-form-wrap input[type="email"]:focus,
.ocenexvr-registration-form-wrap input[type="password"]:focus,
.ocenexvr-registration-form-wrap select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.ocenexvr-registration-form-wrap small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #777;
}

.ocenexvr-registration-form-wrap .required {
    color: #dc3545; /* Red for required fields */
    margin-left: 2px;
}

.ocenexvr-registration-form-wrap button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-top: 20px;
}

.ocenexvr-registration-form-wrap button[type="submit"]:hover {
    background-color: #0056b3;
}

.ocenexvr-registration-form-wrap button[type="submit"]:disabled {
    background-color: #a0c2ed;
    cursor: not-allowed;
}

/* Messages */
.ocenexvr-message {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.ocenexvr-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ocenexvr-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Password Toggle */
.password-input-wrap {
    position: relative;
    display: flex; /* Aligns input and icon */
    align-items: center;
}

.password-input-wrap input {
    padding-right: 40px; /* Make space for the icon */
}

.password-toggle-icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #777;
    font-size: 20px; /* Adjust size of dashicon */
    line-height: 1; /* Align vertically */
}

.password-toggle-icon:hover {
    color: #333;
}