/* General Styles */
body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    height: auto;
}

/* Left and Right Sides */
.left-side, .right-side {
    flex: 1;
    display: flex;

}

.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-side {
    flex: 1;
    background: linear-gradient(145deg,  rgba(0, 35, 156, 0.97),rgba(202, 3, 3, 0.97)), url('image.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.right-side {
    background-color: #f2f6ff;
    padding: 20px;
}

/* Left Side Content */
.left-side .left1 {
    width: 100%;
    max-width: 400px;
    padding: 10px;
}

.left-side .left2 {
    width: 100%;
    /*max-width: 600px;*/
    height: auto;
    overflow: hidden;
    margin-top: 160px;
}

.left-side ul {
    list-style: none;
    padding: 0;
}

.left-side ul li::before {
    content: "\f00c"; /* Unicode for solid check mark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Required for solid icons */
    font-size: 12px;
    color: blue; /* Green tick */
    /* Circle Background */
    background-color: white; /* White circle */
    width: 21px; /* Circle size */
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Makes it circular */
    margin-right: 10px;
}

/* Form Card */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(51, 207, 12, 0.1);
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.form-logo {
    max-width: 150px;
    display: block;
    margin: 0 auto 20px;
}

.form-container form {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-shadow: #333;
}

.form-container label {
    margin-top: 15px;
    margin-bottom: -9px;
    /* font-weight: 300; */
    font-size: 16px;
}

.form-container input,
.form-container button {
    margin-top: 10px;
    padding: 7px;
    font-size: 14px;
    border: 1px solid rgba(185, 183, 183, 0.913);
    border-radius: 5px;
    /* font-weight: 400; */
}

.form-container button {
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #0056b3;
}
.form-container input
.checkbox-container {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between checkbox and text */
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: initial; /* Default color */
}

.checkbox-container input[type="checkbox"]:checked {
    accent-color: blue; /* Changes color to blue when checked */
}

.checkbox-container a {
    text-decoration: underline;
    color: #007bff;
}

.checkbox-container a:hover {
    color: #0056b3;
}

.label-font{
    font-size: 16px;
    font-weight: 400;
}

/* Owl Carousel */
.owl-carousel {
    width: 100%;
}

.owl-carousel img {
    max-width: 100%;
    height: 100px;
    display: block;
    border-radius: 10px;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.text-danger {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
    display: block;
}

.success {
    color: #28a745;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}
#demoForm p {
    margin: 10px 0px;
}
/* Media Queries for Responsiveness */
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .left-side .left2 {
        margin-top: 50px !important;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .left-side .left2 {
        margin-top: 50px !important;
    }
}
@media (min-width: 768px) {
    .container {
        flex-direction: row;
        height: 100vh;
    }

    .right-side {
        padding: 40px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .left-side {
        padding: 20px 40px;
    }
}

@media (max-width: 767px) {
    .container {
        flex-direction: column;
    }

    .left-side .left2 {
        width: 90%;
    }

    .form-container button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .left-side .left1 h1 {
        font-size: 1.5rem;
    }

    .form-container label {
        font-size: 12px;
    }

    .form-container input,
    .form-container button {
        font-size: 14px;
        padding: 8px;
    }

    .card {
        padding: 15px;
    }
}

