:root{
    --background-color: #F8F7FA;
}

.access{
    width: 100%;
}

.box_image{
    width: 65%;
}

.box_image img{
    width: 100%;
    margin-top: -100px;
}

.form{
    width: 35%;
}

.box_form{
    width: 100%;
    padding: 20px;
    margin-top: -250px;
}

.box_form h2{
    font-size: 24px;
    font-weight: 500;
    color: var(--color-black-90);
    padding-bottom: 10px;
}

.box_form p{
    font-size: 16px;
    color: var(--color-black-70);
}

.box_label{
    width: 100%;
    margin: 15px 0;
}

.box_label .label{
    display: block;
    color: var(--color-black-90);
}

.box_label input{
    height: 40px;
    border: 1px solid var(--color-black-22);
    padding: 7px 14px;
    border-radius: 6px;
}

.box_label input[type='email']{
    width: 100%;
    
}

.box_label input:focus{
    outline: 0;
}

.box_label .input_action_icon{
    width: 100%;
    border: 1px solid var(--color-black-22);
    border-radius: 6px;
    padding-right: 10px;
}

.box_label .input_action_icon i{
    cursor: pointer;
}

.box_label .input_action_icon input{
    width: 100%;
    border: 0;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    appearance: none;            /* Remove o estilo nativo */
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 6px 0px var(--color-primary-30);
    margin-right: 8px;
    border-radius: 4px;
    position: relative;
    border: 1px solid var(--color-black-22);
}

.custom-checkbox:checked {
    background-color: var(--color-primary); /* verde */
}

.custom-checkbox:checked::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.remeber_me span{
    color: var(--color-black-90);
}

.remeber_me a{
    display: block;
    text-decoration: none;
    color: var(--color-primary);
}

button.button_form{
    width: 100%;
    margin-top: 15px;
    background-color: var(--color-primary);
    border: 0;
    height: 40px;
    border-radius: 6px;
    font-size: 16px;
    color: var(--color-white);
    font-weight: 600;
    cursor: pointer;
}

.create{
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.create span{
    color: var(--color-black-70);
}

.create a{
    display: inline-block;
    text-decoration: none;
    color: var(--color-primary);
}

@media screen and (max-width: 768px){
    .box_image{
        display: none;
    }
    
    .form{
        width: 100%;
        height: 100vh;
    }

    .box_form{
        margin-top: 0px;
    }
}


