html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

.main-content {
    flex: 1 0 auto;
}

.full-height {
    height: 100%;
}

.left-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.mobile-banner {
    display: none;
    height: 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.header-green {
    background-color: #f0f0f0;
    padding: 1rem;
}

.content-red {
    background-color: #ffffff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 2rem;
}

.footer-gray {
    background-color: #000000;
    text-align: center;
    padding: 1rem;
    color:#ffffff;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
}
.form-control{
    background-color: #f0f0f0;
    border-radius: 0;
    min-height: 40px;
}
.form-control:focus {
    border-color: initial!important;
    outline: 0;
    box-shadow: none!important;
}
.btn{
    min-height: 40px;
    border-radius: 5px;
    min-width: 200px!important;
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    box-shadow: 5px 5px #000 !important;
    font-weight: 700!important;
}

.btn:hover{
    min-height: 40px;
    border-radius: 5px;
    min-width: 200px!important;
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #d90a2c !important;
    box-shadow: 5px 5px #d90a2c !important;
}


.custom-upload-box {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    cursor: pointer;
    background-color: #fff;
    transition: border-color 0.3s;
}

.custom-upload-box:hover {
    border-color: #d90a2c;
}

.custom-upload-box input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
}

.custom-upload-box .upload-btn {
    background-color: #f0f0f0;
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.custom-upload-box p {
    color: #666;
    margin: 0;
}
.wheelContainer{
    position: relative!important;
}
@media (max-width: 768px) {
    .left-image {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .content-red {
        min-height: auto;
    }
}
