body {
    overflow: hidden;
}

.logo {
    display: flex;
    margin: auto;
    width: 220px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: none;
    height: 100vh;
    width: 40%;
    padding: 0 40px; 
    margin: auto 0;
    background-color: #0e1823;
    position: fixed;
    left: 0;
}

.box-cover {
    position: fixed;
    right: 0;
    width: 60%;
    height: 100vh;
    background-image: url(../../../assets/img/bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.box-login-title {
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.box-login-message {
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkbox {
    margin-left: 0;
    text-align: left;
}

.remember {
    color: white;
}

.btn-login {
    margin-top: 20px;
    text-transform: uppercase;
    background-color: var(--success) !important;
    color: white !important;
}


.btn-register {
    margin-top: 60px;
    background-color: none !important;
    color: white !important;
}

.btn-register:hover {
    color: var(--info) !important;
}

.forgot-password {
    display: block;
    margin-top: 20px;
    font-weight: 700;
    color: white !important;
}

input[type=email]:hover,
input[type=email]:focus,
input[type=password]:hover{
    background-color: #FF0;
    cursor: pointer;
}