* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    background: #f5f5f5;
    color: #222;
    line-height: 1.4;
}

main{
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

main > div{
    flex: 1;
}

main > div:first-child{
    background-color: #002147;
    padding: 70px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    img{
        width: 170px;
    }

    hr{
        width: 60px;
        color: #fff;
        background: #fff;
        height: 4px;
        margin-bottom: 20px;
    }

    h1{
        font-weight: 800;
        font-size: 32px;
        line-height: 38px;
        color: #FFFFFF;
        margin-bottom: 20px;
    }

    p {
        font-weight: 300;
        font-size: 18px;
        line-height: 26px;
        color: #FFFFFF;
    }

}

main > div:last-child{
    background-color: #FAFAFA;
    padding: 70px 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    & > div{
        min-width: 400px;
    }

    h3{
        font-weight: 600;
        font-size: 24px;
        line-height: 24px;
    }

    h3 + p{
        margin-top: 8px;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
    }

    label{
        font-weight: 500;
        font-size: 12px;
        line-height: 20px;
        color: #414651;
        display: block;
        margin: 10px 0 5px 0;
    }

    input{
        display: block;
        width: 100%;
        box-sizing: border-box;
        background: #FFFFFF;
        border: 1px solid #D5D7DA;
        box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
        border-radius: 8px;
        outline: none;
        font-size: 14px;
        padding: 14px 10px;
    }

}

.auth-burron{
    outline: none;
    border: none;
  
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 8px;
    gap: 8px;


    background: #FFFFFF;
    border: 1px solid #E9EAEB;
    border-radius: 8px;

    margin: 10px 0;

    cursor: pointer;
}

.auth-burron:hover{
    text-decoration: underline;
}

.auth-burron.google::before{
    content: ' ';
    width: 20px;
    height: 20px;
    background-image: url(/imgs/google.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 50%;
}

.text-hr{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #717680;
    font-size: 14px;
    font-weight: 300;
    margin: 10px 0;
}

.text-hr::before, .text-hr::after {
    content: ' ';
    border-top: 2px solid #D9D9D9;
    flex: 1;
}

.sign{
    outline: none;
    border: none;
    display: block;
    text-align: center;
    color: #fff;
    background: #002147;
    border-radius: 8px;
    font-size: 14px;
    padding: 12px 8px;
    margin: 20px 0 10px 0;
    width: 100%;
    cursor: pointer;
}

.sign:hover{
    text-decoration: underline;
}

.sign.wait{
    pointer-events: none;
    opacity: 0.7;
}

.forgot{
    float: right;
    font-size: 12px;
    color: #002147;
    cursor: pointer;
}

.forgot:hover{
    text-decoration: underline;
}

.error{
    color: rgb(240, 30, 30);
    font-size: 14px;
    padding: 10px 0 0 0;
}
.error:empty{
    display: none;
}


.success{
    color: rgb(12, 172, 49);
    font-size: 14px;
    padding: 10px 0 0 0;
}
.success:empty{
    display: none;
}

@media (max-width: 768px) {
  
}