body {
    background-color: #f2f2f2;
}

.form-container {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 2px 18px 24px #0000001a;
    border-radius: 20px;
    opacity: 1;
    margin: 30px auto;
    display: flex;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.form-image {
    width: 40%;
    overflow: hidden;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.form-content {
    width: 60%;
    padding: 20px;
}

.btn-check:checked + .btn-outline-cadastro {
    background-color: #003f47 !important;
    border-color: #003f47 !important;
    font-size: 16px;
    transition: all 0.3s linear;
}

.btn-outline-primary {
    color: #003f47;
    border-color: #003f47;
}

.btn-outline-cadastro:hover {
    background-color: #003f47 !important;
    border-color: #003f47 !important;
}

.btn-primary {
    background-color: #ea7616;
    border-color: #ea7616;
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
    width: 280px;
}

.btn-primary:hover {
    background-color: #1d8e42;
    border-color: #1d8e42;
}

.btn-entrar-novo {
    background: #ea7616 0% 0% no-repeat padding-box;
    font-size: 25px;
    color: white;
    border-color: #ea7616;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    transition: all 0.3s linear;
    padding: 12px;
}

.btn-entrar-novo:hover {
    background: #003f47 0% 0% no-repeat padding-box;
    border-color: #003f47;
}

.form-control,
.select-option {
    background-color: transparent;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    padding: 9px;
}

.form-label {
    font-weight: unset;
    font-size: 15px;
    color: #cbcbcb;
}

@media (max-width: 575px) {
    .form-image {
        display: none;
    }

    .form-content {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .form-image {
        display: none;
    }
    .form-content {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .form-image {
        display: none;
    }
    .form-content {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .form-image {
        display: flex;
    }
    .form-content {
        width: 60%;
    }
}

@media (min-width: 1200px) {
    .form-image {
        display: flex;
    }
    .form-content {
        width: 60%;
    }
}
