.elementor-598 .elementor-element.elementor-element-65889dc5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-598 .elementor-element.elementor-element-45d678d3{width:var( --container-widget-width, 100% );max-width:100%;margin:0160px 0px calc(var(--kit-widget-spacing, 0px) + 0140px) 0px;--container-widget-width:100%;--container-widget-flex-grow:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-598 .elementor-element.elementor-element-65889dc5{--content-width:1150px;}}/* Start custom CSS for shortcode, class: .elementor-element-45d678d3 */.um-590.um {
    max-width: 800px !important;
    width: 100% !important;
    margin: 0 auto; /* center horizontally */
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-65889dc5 */#um-submit-btn {
    background-color: #8F180F !important; /* red */
    color: #ffffff !important; /* white text */
    border: 1px solid #ffffff !important; /* white border */
    border-radius: 25px !important;
    padding: 12px 20px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.um-form input::placeholder,
.um-form textarea::placeholder {
    color: #808080 !important; /* gray color */
    opacity: 1; /* ensure full opacity in all browsers */
}

/* Hover effect */
#um-submit-btn:hover {
    background-color: #7a140c !important; /* darker red */
    border-color: #ffffff !important;
}

.um-button.um-alt {
    background-color: #ffffff !important; /* white background */
    color: #8F180F !important; /* dark text for contrast */
    border: 1px solid #ffffff !important; /* optional border */
    border-radius: 25px !important; /* rounded corners */
    padding: 12px 20px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

/* Hover effect */
.um-button.um-alt:hover {
    background-color: #f2f2f2 !important; /* light gray on hover */
    color: #8F180F !important;
}

/* ------------------ CENTER FORM HORIZONTALLY & VERTICALLY ------------------ */
body {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #e6f2ff; /* page background */
    font-family: 'Roboto', sans-serif;
}

/* ------------------ FORM STYLE ------------------ */
.um-form {
    width: 100%;
    /*max-width: 1000px;*/
    padding: 40px;
    background-color: #8F180F; /* form background */
    border: 2px solid #e0e0e0; /* border color */
    border-radius: 16px; /* rounded corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Form title */
.um-form h3.um-form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #0073e6;
}

/* ------------------ 2 INPUTS PER ROW ------------------ */
.um-form .um-field {
    width: 48%; /* 2 inputs per row */
    display: inline-block;
    vertical-align: top;
    margin-right: 4%; /* gap */
    box-sizing: border-box;
}

.um-form .um-field:nth-child(2n) {
    margin-right: 0;
}

/* Input fields style */
.um-form input[type="text"],
.um-form input[type="email"],
.um-form input[type="password"],
.um-form select,
.um-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1.5px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    background-color: #ffffff; /* white input fields */
    transition: all 0.3s ease;
}

.um-form label {
    color: #ffffff !important;
}

/* Input focus */
.um-form input:focus,
.um-form textarea:focus,
.um-form select:focus {
    border-color: #0073e6;
    box-shadow: 0 0 8px rgba(0, 115, 230, 0.3);
    outline: none;
}

/* Submit button */
.um-form .um-button,
.um-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    background: #911A10;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Force gray background for valid inputs */
.um-form input.um-form-field.valid {
    background-color: #fff !important;
    border-radius: 12px !important;
}

.um-form .um-button:hover,
.um-form button:hover {
    background-color: #fff;
}

/* Links (forgot password / register) */
.um-form .um-link-alt {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #0073e6;
    text-decoration: none;
    font-size: 14px;
}

.um-form .um-link-alt:hover {
    text-decoration: underline;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
    .um-form .um-field {
        width: 100%;
        margin-right: 0;
    }
}/* End custom CSS */