/* Form Container */
.wls-form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Tabs */
.wls-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wls-tab-button {
    width: 48%;
    padding: 10px;
    border: none;
    background-color: #f1f1f1;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.wls-tab-button.active {
    background-color: #0073aa;
    color: #fff;
}

/* Input Fields */
.wls-input-group {
    position: relative;
    margin-bottom: 15px;
}

.wls-input-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
}

.wls-input-group input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Toggle Password */
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Checkbox */
.wls-checkbox-group {
    margin-bottom: 15px;
}

/* Buttons */
button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: #005177;
}

/* Forgot Password */
.forgot-password {
    text-align: right;
    margin-top: 10px;
}

.forgot-password a {
    color: #0073aa;
    text-decoration: none;
}

/* Error and Success Messages */
.wls-message {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}

.wls-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wls-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
