body {
    background-color: #9AE265;
}

.signIn {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.signIn-logo {
    width: 100%;
    margin-block: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

.signIn-logo img {
    width: 350px;
}

.signIn-logo h1 {
    color: white;
}

.signIn .content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.signIn .content .form {
    width: 40%;
}

.signIn .content .image {
    width: 30%;
    height: max-content;
}

.signIn .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signIn .content form h2 {
    width: 40%;
    color: black;
    font-weight: 700;
    font-size: 28px;
}

.signIn .content form .form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.signIn .content form .form input:not([type="radio"]):not([type="checkbox"]) {
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    border-radius: 222222px;
    color: white;
    border: none;
    outline: none;
    text-align: center;
}
.inputBox {
    width: 100%;
}
input[type="submit"] {
    width: 100%;
}

.form-check.form-check-primary {
    margin-left: 10px;
}
.form-check.form-check-primary .form-check-input:checked {
    background-color: black;
}

@media screen and (max-width:991px) {

    .signIn {
        justify-content: flex-start;
        gap: 50px;
    }

    .signIn .content .image {
        display: none;
    }

    .signIn .content .form {
        width: 100%;
    }

    .signIn .content form h2 {
        width: 100%;
        margin-bottom: 50px;
        font-size: 22px;
    }

    .inputBox {
        width: 100%;
    }

}

@media screen and (max-width:768px) {
    .signIn-logo img {
        width: 200px;
    }

    .signIn-logo h1 {
        font-size: 20px;
    }

    .signIn .content form {
        width: 70% !important;
    }
}