
.container {
    display:flex;
    font-weight: bold;
    height: 100%;
    max-width: none;
    padding: 40px;
}

.login-container {
    width: 50%;
    /* background-color: rgb(230, 32, 32); */
   display: flex;
   justify-content: center;
   align-items: center;
}

.image-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    background: var(--orange), url("../images/login-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
}

.text-div{
    width: 60%;
}

.text-div h2 {
    width: 120px;
    font-size: 35px;
    color: #FFFFFF;
    margin: 0;
}

.text-div p {
    font-size: 16px;
    opacity: 45%;
    color: #FFFFFF;
    margin: 12px 0;
}
.text-div p:first-child{
    margin-bottom: 10px;
}

.form-div {
    width: 70%;
    /* background-color: blue; */
}
.text-div div{
    background-color: #FFFFFF;
    height: 1px;
    width: 120px;
    margin-top: 10px;
}

.image {
    width:100%;
    max-height:100%;
    min-height: 100%;
}

.logo {
    margin-bottom: 15px;
    width: 6.8vw;
    height: 6.8vw;
    max-width: 120px;
    max-height: 120px;
}

.same-label {
    display: flex;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #B7B4B4;
    font-size: 14px;
}
.scroll{
    background-color: #FFFFFF;
}
.password-label{
    margin-top: 50px;
}

.same-input {
    width: 77.3%;
    border: 0;
    background: none;
    outline: none;
    border-bottom: 1px solid #D6D6D6;
    height: 20px;
}
.email-input, .password-input {
    color: #474747;
}
div input.form-check-input:first-child {
    border-radius: 16px;
    width: 2vw;
    height: 2vw;
    max-width: 40px;
    max-height: 40px;
    margin-right: 10px;
}
.form-check-input:checked{
    border: none;
    background:#B7B4B4;
}

.checkbox-div {
    margin:30px 0px;
    display: flex;
    align-items: center;
    color: #B7B4B4;
    font-size: 14px;
}

button.btn {
    padding: 10px 40px;
    border-radius: 20px;
    /* background-color:rgb(255, 140, 0);  */
    background: var(--orange);
    font-size: 16px;
    color:white;
    font-weight: bold;
}

/* @media (max-width: 720px) {

    .image-container {
        display: none;
    }

    .login-container {
        margin: 2vh auto;
        float: none;
        width: 100%;
        align-items: flex-start;
    }

    .container {
        padding: 25px;
    }

    .form-div {
        width: 100%;
        margin-top: 10%;
    }

    div input.form-check-input:first-child {
        width: 6vw;
        height: 6vw;
    }
  }

  @media (max-width: 420px) {

    .login-container {
        width: 100%;
    }

    .logo {
        width: 15vw;
        height: 15vw;
    }
  } */
