input,
select,
textarea,
button {
    font-family: var(--font-family-base);
    outline: none;
}

body,
html {
    background-color: #FFFFFF;
}


.container_auth {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}


#content_auth {
    width: 100%;
    max-width: 550px;
    border-right: 1px solid #ddd;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    .content {
        padding: 50px 0;
        width: 100%;
        height: auto;
        max-height: 100vh;
        overflow: auto;
        .position_content {
            max-width: 430px;
            margin: 0 auto;
        }
    }

    .logo {
        max-width: 70px;
        margin-bottom: 70px;
    }

    .title {
        width: 100%;
        height: auto;
        text-align: left;
        margin-bottom: 20px;
        color: var(--text-color);
        h2 {
            font-size: 24px;
            font-weight: 700; 
            color: #333333;           
        }

        h3 {
            font-weight: 400;
            margin-top: 5px;
            color: #777777;
        }
    }

    .form_group {
        width: 100%;
        margin-bottom: 15px;
        label {
            color: #444444;
            font-weight: 400;
            margin-bottom: 3px;
            display: block;
            font-size: 14px;
        }

        .actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 5px;
            a {
                color: #333333;
                text-decoration: underline;
                font-weight: 500;
                font-size: 13px;
            }
        }
    }

    .input {
        width: 100%;
        height: 45px;
        padding: 0 20px;
        border-radius: 10px;
        border: 1px solid #DDDDDD;
    }

    .button {
        width: 100%;
        height: 45px;
        border: 0;
        border-radius: 10px;
        margin: 10px 0;
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        background-color: var(--primary-color);
        cursor: pointer;
    }

    .content_password {
        position: relative;
    }

    .password_toggle {
        position: absolute;
        right: 20px; 
        top: calc(50% - 10px); 
        width: 20px;
        height: 20px;
        cursor: pointer;

        img {
            opacity: 0.7;
        }
    }

    .links_actions {
        width: 100%;
        height: auto;
        text-align: center;
        margin: 20px 0;
        color: #777777;

        a {
            color: #333333;            
            text-decoration: underline;
        }
    }

}


#slide_auth {
    width: calc(100% - 550px);
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
    position: relative;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mask {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        z-index: 999;
        background-color: rgba(0, 0, 0, 0.5);        
        display: flex;
        align-items: center;
        justify-content: flex-start;
        .text {
            color: #FFFFFF;
            padding: 0 10%;
            max-width: 550px;
            h2 {
                font-size: 33px;
                line-height: 33px;
                font-weight: 500;
            }
            p {
                margin: 10px 0;
            }
        }

    }
}










/* responsivo */
@media (min-width: 1600px) {
    #content_auth {
        width: 100%;
        max-width: 35%;
    }
    #slide_auth {
        width: calc(100% - 35%);

        .mask {
            .text {
                padding: 0 10%;
                max-width: 50%;
            }
    
        }
    }
}

@media (max-width: 900px) {
    #slide_auth {
        display: none;
    }

    #content_auth {
        width: 100%;
        max-width: 100%;
        border-right: 0;
        .content {
            width: 100%;
            height: auto;
            max-height: auto;
            .position_content {
                width: 90%;
                max-width: 450px;
            }
        }        
    }    
}