/* Public CSS */
.vs-login-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vs-login-form h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.vs-login-form .form-group {
    margin-bottom: 15px;
}

.vs-login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.vs-login-form input[type="text"],
.vs-login-form input[type="password"],
.vs-login-form input[type="email"],
.vs-login-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.vs-login-form .button {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.vs-login-form .button:hover {
    background: #005f8b;
}

.vs-login-form .vs-form-footer {
    margin-top: 20px;
    text-align: center;
}

.vs-login-form .vs-form-footer a {
    color: #0073aa;
    text-decoration: none;
}

.vs-login-form .vs-form-footer a:hover {
    text-decoration: underline;
}

.vs-custom-login-fields {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.vs-registration-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vs-registration-form h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.vs-registration-form .form-group {
    margin-bottom: 15px;
}

.vs-registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.vs-registration-form input[type="text"],
.vs-registration-form input[type="password"],
.vs-registration-form input[type="email"],
.vs-registration-form select,
.vs-registration-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.vs-registration-form textarea {
    height: 100px;
}

.vs-registration-form .vs-required {
    color: #f00;
}

.vs-registration-form .vs-form-description {
    margin-bottom: 20px;
    color: #666;
}

.vs-registration-form .vs-form-footer {
    margin-top: 20px;
    text-align: center;
}

.vs-user-profile {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vs-user-profile h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.vs-user-profile .vs-profile-section {
    margin-bottom: 30px;
}

.vs-user-profile .vs-profile-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.vs-user-profile .vs-profile-field {
    margin-bottom: 15px;
}

.vs-user-profile .vs-profile-field label {
    display: inline-block;
    width: 150px;
    font-weight: bold;
}

.vs-user-profile .vs-profile-actions {
    margin-top: 20px;
    text-align: right;
}

.vs-user-profile .vs-profile-actions .button {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin-left: 10px;
}

.vs-user-profile .vs-profile-actions .button:hover {
    background: #005f8b;
}

.vs-role-selector {
    margin-bottom: 20px;
}

.vs-role-selector .vs-role-option {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.vs-role-selector .vs-role-option:hover {
    background: #f1f1f1;
}

.vs-role-selector .vs-role-option.active {
    background: #0073aa;
    color: #fff;
    border-color: #005f8b;
}
