.elementor-kit-6{--e-global-color-primary:#A82424;--e-global-color-secondary:#282834;--e-global-color-text:#2F2F3A;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#000000;}.elementor-kit-6 h1{color:var( --e-global-color-primary );}.elementor-kit-6 h2{color:var( --e-global-color-primary );}.elementor-kit-6 h3{color:var( --e-global-color-primary );}.elementor-kit-6 h4{color:var( --e-global-color-primary );}.elementor-kit-6 h5{color:var( --e-global-color-primary );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Center Password Form */
form.post-password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
/* Style the Password Label */
form.post-password-form label {
    display: block;
    margin-bottom: 0px; /* Increase space between label and input */
    font-weight: bold;
}

/* Change Font for Text */
form.post-password-form p,
form.post-password-form label {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    color: #333;
}
/* Style the container holding the input & button */
.password-container {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: center;
    gap: 10px; /* Space between input and button */
    width: 100%;
}

/* Make Input and Button Same Height */
form.post-password-form input[name="post_password"],
form.post-password-form input[type="submit"] {
    height: 50px; /* Ensures they are the same height */
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

/* Full-width Input Field */
form.post-password-form input[name="post_password"] {
    flex: 1; /* Makes the input take up available space */
    text-align: center;
}

/* Fixed-Width Button */
form.post-password-form input[type="submit"] {
    background-color: #A82424;
    color: white;
    border: none;
    min-width: 100px; /* Keeps button width consistent */
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Hover Effect */
form.post-password-form input[type="submit"]:hover {
    background-color: #d84315;
}/* End custom CSS */