.elementor-8397 .elementor-element.elementor-element-f0b4417{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8397 .elementor-element.elementor-element-bef90b5{--spacer-size:50px;}.elementor-8397 .elementor-element.elementor-element-bef90b5 > .elementor-widget-container{height:auto;}.elementor-8397 .elementor-element.elementor-element-e875aa3{--divider-border-style:solid;--divider-color:#000;--divider-border-width:3px;margin:-50px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;--e-w-ml:0px;--e-w-mr:0px;--divider-width:55%;}.elementor-8397 .elementor-element.elementor-element-e875aa3 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-8397 .elementor-element.elementor-element-e875aa3 .elementor-divider-separator{width:55%;margin:0 auto;margin-center:0;}.elementor-8397 .elementor-element.elementor-element-e875aa3 .elementor-divider{text-align:center;padding-block-start:15px;padding-block-end:15px;}.elementor-8397 .elementor-element.elementor-element-75d4d52 > .elementor-widget-container{padding:0px 15px 0px 15px;}.elementor-8397 .elementor-element.elementor-element-75d4d52{text-align:center;color:#000000;}.elementor-8397 .elementor-element.elementor-element-aa1b96a > .elementor-widget-container{padding:0px 15px 0px 15px;}.elementor-8397 .elementor-element.elementor-element-aa1b96a{text-align:center;color:#000000;}.elementor-8397 .elementor-element.elementor-element-4c300b9 > .elementor-widget-container{padding:0px 0015px 0px 15px;}.elementor-8397 .elementor-element.elementor-element-4c300b9.elementor-element{--align-self:center;}.elementor-8397 .elementor-element.elementor-element-4c300b9{text-align:center;color:#000000;}.elementor-8397 .elementor-element.elementor-element-1c3cf27{--spacer-size:50px;}.elementor-8397 .elementor-element.elementor-element-1c3cf27 > .elementor-widget-container{height:auto;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-8397 .elementor-element.elementor-element-4c300b9{width:var( --container-widget-width, 217px );max-width:217px;--container-widget-width:217px;--container-widget-flex-grow:0;}}@media(min-width:768px){.elementor-8397 .elementor-element.elementor-element-f0b4417{--content-width:800px;}}/* Start custom CSS for wp-widget-uwp_login, class: .elementor-element-d839d0b *//* General form styling for login */
.customlogin {
    font-family: 'Poppins', sans-serif !important;
    font-size: 12pt !important;
    color: black !important;
}

/* General "Remember Me" checkbox styling */
#remember_me {
    appearance: none !important; /* Remove default checkbox styling */
    -webkit-appearance: none !important; /* Remove WebKit default styling */
    -moz-appearance: none !important; /* Remove Mozilla default styling */
    width: 20px !important; /* Set box width */
    height: 20px !important; /* Set box height */
    border: 3px solid black !important; /* 3px solid border */
    border-radius: 0px !important; /* No rounded corners */
    background-color: white !important; /* Default white background */
    cursor: pointer !important; /* Pointer cursor for better UX */
    display: inline-block !important; /* Ensure proper alignment */
    position: relative !important; /* Relative for pseudo-element positioning */
    overflow: hidden !important; /* Ensure no default checkmark shows */
    text-align: center !important; /* Additional alignment enforcement */
}

/* Remove any ::before pseudo-element for the checkbox */
#remember_me::before {
    content: none !important;
    display: none !important;
}

/* Checked state styling */
#remember_me:checked {
    background-color: #8be8af !important; /* Green background when checked */
    border-color: black !important; /* Black border when checked */
}

/* Custom checkmark */
#remember_me:checked::after {
    content: '✓' !important; /* Unicode checkmark */
    font-size: 16px !important; /* Adjust size of the checkmark */
    color: black !important; /* Black checkmark */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important; /* Center the checkmark */
}

/* Label styling */
label[for="remember_me"] {
    font-family: 'Poppins', sans-serif !important; /* Match general form font */
    font-size: 12pt !important; /* Font size for label */
    color: black !important; /* Label text color */
    margin-left: 0px !important; /* Space between checkbox and label */
    margin-bottom: 17.5px !important;
    cursor: pointer !important; /* Make label clickable */
}

/* Input boxes for login */
.customlogin input[type="text"],
.customlogin input[type="username"],
.customlogin input[type="password"],
.customlogin textarea {
    border: 3px solid black !important;
    background-color: white !important;
    color: black !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12pt !important;
    padding: 10px !important;
    border-radius: 0px !important; /* No rounded corners */
    width: 100% !important; /* Full width */
    box-sizing: border-box !important;
}

/* Buttons for login */
.customlogin button,
.customlogin input[type="submit"] {
    border: 3px solid black !important; /* Black border */
    background-color: white !important; /* White background */
    color: black !important; /* Black text */
    font-family: 'Poppins', sans-serif !important;
    font-size: 12pt !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border-radius: 0px !important; /* No rounded corners */
    cursor: pointer !important;
    transition: background-color 0.3s ease !important, color 0.3s ease !important;
}

/* Button hover effect */
.customlogin button:hover,
.customlogin input[type="submit"]:hover {
    background-color: #8be8af !important; /* Hover color */
    color: black !important; /* Keep text black */
}

/* Input focus style */
.customlogin input[type="text"]:focus,
.customlogin input[type="username"]:focus,
.customlogin input[type="password"]:focus,
.customlogin textarea:focus {
    border: 3px solid #8be8af !important; /* Focus border color */
    outline: none !important; /* Remove default focus outline */
}

/* Disable visibility for footer link */
.uwp-login-links {
    visibility: hidden !important;
}
/* Style for error messages */
.uwp_message_error.invalid-feedback {
    border: 3px solid black !important; /* Match other borders */
    border-radius: 0px !important; /* Remove rounded corners */
    background-color: #ffffff !important; /* Light red background for error visibility */
    color: black !important; /* Black text for readability */
    font-family: 'Poppins', sans-serif !important; /* Match font */
    font-size: 12pt !important; /* Adjust font size */
    padding: 10px !important; /* Add padding for better spacing */
    margin-top: 10px !important; /* Spacing between fields and error message */
    box-sizing: border-box !important; /* Ensure consistent sizing */
}

/* Ensure no icons or unnecessary content */
.uwp_message_error.invalid-feedback::before,
.uwp_message_error.invalid-feedback::after {
    content: none !important; /* Remove any pseudo-elements */
    display: none !important;
}/* End custom CSS */