:root{
    /* CORES */
    --primary: #E41D25;
    --secondary: #14171B;
    --light: #FFF;
    --gray: #8E8E8E;
    --gray-light: #CFCFCF;
    --danger: #F6545C;
    --danger-light: #FFDFE2;
    --background-body: #F8F8F8;

    /* FONTES */
    --font: 'Outfit', 'Rubik', sans-serif;

    --title: normal 500 32px var(--font);
    --sub-title: normal 600 18px var(--font);
    --paragraph: normal 400 16px var(--font);
    --error: normal 400 16px var(--font);
    --label: normal 400 14px var(--font);
    --button: normal 700 16px var(--font);

    /* ESPAÇOS */
    --small: 8px;
    --default: 12px;
    --medium: 16px;
    --medium-variant: 18px;
    --large: 24px;
    --x-large: 42px;
    --xx-large: 64px;

    /* BORDER RADIUS */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 24px;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, html{
    width: 100%;
    height: 100%;
    background-color: var(--light);
}

.container{
    display: flex;
    align-items: center;
    max-width: 1500px;
    margin: auto;
    width: 100%;
    height: 100%;
}

.column{
    flex: 1;
    text-align: center;
}

.column_image{
    flex: 5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
}

.image{
    width: 75%; height: 100vh;
    max-height: 100%;
}

.column_form {
    flex: 4;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    align-items: center;
    max-height: 735px;
    height: 100%;
    min-width: 370px;
}

.logo_container{
    display: flex;
    width: 100%;
    /*height: 0;*/
    justify-content: start;
    align-items: start;
}

.logo{
    width: 50%;
}

.form_error{
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--danger-light);
    color: var(--danger);
    border-radius: 4px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    min-height: 40px;
}

.form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.form_subtitle{
    text-align: start;
    color: #14171B;
    font-family: var(--font) ;
    font-size: 32px;
    font-weight: 500;
}

.form_text{
    text-align: start;
    color: #8E8E8E;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
}

.form_container_text{
    display: flex;
    flex-direction: column;
    margin-bottom: 65px;
}


.form_container{
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form_container_subtitle{
    margin-bottom: 8px;
    text-align: start;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
}

.form_container_input{
    height: 48px;
    border-radius: 4px;
    border: #CFCFCF solid 1px ;
    padding: 19px 12px;
    outline: none !important;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
}

.button_submit{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    background-color: #E41D25;
    border-radius: var(--radius-small);
    border: none;
    color: #FFFFFF;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 750px) {
    .container {
        flex-direction: row;
        align-items: flex-start;
    }

    .column_image{
        display: none;
    }

    .column{
        display: none;
    }

    .column_form{
        margin: 0 1.5rem 0 1.5rem;
        max-height: max-content;
        min-width: auto
    }

    .form{
        padding-bottom: 2rem;
    }
}