:root {
    --main: #3e67ac;
    --light: #eff4ff;
    --white: #fafcff;
}

.login_page {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.login_page .login_container {
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.login_page .login_container .section1 {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
}

.login_page .login_container .section2 {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
}

.login_page .login_container .section2 img {
    width: auto;
    height: 90%;
}

.login-box-body {
    background: var(--light);
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_page input {
    border-radius: 1rem;
    height: 6vh;
    width: 100%;
    border: 0.3vh solid var(--main);
}

.login-box-body .form-control-feedback, .register-box-body .form-control-feedback {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_page .custom_btn {
    width: 80%;
    height: 6vh;
    border-radius: 1rem;
    border: none;
    background: var(--main);
    color: white;
    font-weight: 600;
    font-size: 2rem;
    margin: 0.5rem 0
}

.login_page #login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
}