/* Add custom CSS styles for the Login Form Elementor widget */
.wp-cl-login p.remember-me {
    display: inline-flex;
    gap: 5px;
}
.wptech-login-form .wptech-login-wrap input {
    height: 35px;
    min-width: 200px;
}
.wptech-login-wrap {
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 10px 0px;
}
.wptech-login-wrap label {
    min-width: 150px;
}
.wptech-login-form input::placeholder {
    text-align: left;
    padding: 5px;
}
#wptech-login-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

#wptech-login-message .wptech-login-error {
    color: #fff;
    background-color: #28a745;
}

#wptech-login-message .wptech-login-error {
    color: #fff;
    background-color: #dc3545;
}
/* Login button styling */
.wptech-login-form #wp-submit {
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    max-width: 100%; /* Full width */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button hover effect */
.wptech-login-form #wp-submit:hover {
    background-color: var(--e-global-color-secondary, #005a8c); /* Elementor's secondary color */
    transform: translateY(-2px); /* Slight hover lift */
}

/* Optional focus styles for accessibility */
.wptech-login-form #wp-submit:focus {
    outline: 2px solid var(--e-global-color-accent, #ff007f); /* Elementor's accent color */
    outline-offset: 2px;
}

.wptech-login-form .login-remember,.wptech-login-form .login-submit{
    margin: 10px 0px;
}