body {
    font-family: "Open Sans", sans-serif;
    background-color: #f8f9fa;
    font-size: 0.8rem;
    padding-top: 97px;
}
a, a:hover, a:visited, a:active{
    color:#1c2354
}
.btn-primary{
    background-color:#21518e;
    border: none;
    border-radius: 0;
}
.header{
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: height 0.3s ease-in-out;
    padding: 10px 20px;
}
input, textarea, select{
    font-size: 0.8rem !important;
}
.form-label{
    font-weight: 600;
    margin-bottom: .1rem !important;
}
.form-control{
    line-height:1 !important;
    border-radius: 0;
}
.carousel-item img {
    object-fit: cover;
}
.form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background-size: cover;
}
.form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    max-width: 550px;
    width: 100%;
    border:1px solid #ececec
}
.invalid-feedback {
    display: block !important;
}
.image-section {
    flex: 1;
    display: flex;
    justify-content: left;
}
.image-section img {
    max-width: 80%;
    height: auto;
}
.star-rating {
    display: flex;
    justify-content: left;
    gap: 3px;
}

.star {
    font-size: 22px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.star.selected, .star:hover {
    color: #ffcc00;
}
.form-success-msg{
    background: #ACDF87;
    color: #222;
    text-align: center;
    font-size: 18px;
    border: 0;
    border-radius: 0;
}
.form-success-msg strong{
    font-size: 20px;
}
.form-error-msg{
    background: #BF0A30;
    color: #ddd;
    text-align: center;
    font-size: 18px;
    border: 0;
    border-radius: 0;
}
#sellForm fieldset{
    padding:2px 0px;
}
.page-content{
    font-size:0.9rem;
}
.page-content ul li{
    margin-bottom:10px;
}
.footer-menu{
    font-size: 1rem;
}
.footer{
    background-color:#f1f1f1 !important;
}
.footer a{
    color: #222;
    text-decoration: none;
}
.form-check-input{
    margin-left:0 !important;
    margin-right: 5px;
    cursor: pointer;
    height: 15px;
    margin-top: 2px;
    border: 1px solid var(--bs-gray-500);
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.35%29'/%3e%3c/svg%3e");
}
.input-label{
    font-size: 0.8rem;
    font-weight: 600;
    width: 30%;
}
@media (max-width: 1024px) {
    .header {
        height: 86px;
        padding: 8px 15px;
    }
    .logo img{
        height: 70px;
    }
    body{
        padding-top:86px;
    }
    .form-container {
        max-width: 60%;
    }
}
@media (max-width: 767px) {
    .header {
        height: 72px;
        padding: 6px 10px;
    }
    .logo img{
        height: 60px;
    }
    body{
        padding-top:72px;
    }
}
@media (max-width: 768px) {
    .form-section {
        flex-direction: column;
        background-image: none;
    }
    .image-section {
        display: none;
    }
    .form-container {
        max-width: 100%;
    }
    .input-label{
        width: 40%;
    }
}
@media (max-width: 500px) {
    .input-label{
        width: 45%;
    }
}