@import "./main.css";

/* body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    background: rgb(252,254,254);
    background: radial-gradient(circle, rgba(252,254,254,1) 0%, rgba(224,241,244,1) 100%);
    gap: 40px;
} */

html{
    height: 100%;
    width: 100%;
}
body{
    display: grid;
    grid-template-columns: 3fr 4fr;
    height: 100%;
}
img{
    pointer-events: none;
}
.pane{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgb(252,254,254);
    background: radial-gradient(circle, rgba(252,254,254,1) 0%, rgba(224,241,244,1) 100%);
}
.left{
    gap: 1rem;
}
.left p{
    color: #A7A7A7;
    padding: 0;
    margin: 0;
}
.divider{
    margin: 0.3rem;
    padding: 0;
    width: 22rem;
}
.right{
    background-image: url("/assets/images/login-bg.png");
    background-size: cover;
    padding: 0em 8em 0em 6em;
    text-align: justify;
    text-justify: inter-word;
    gap: 3rem;
}
.right h1{
    color: #005CA9;
    font-weight: 800;
    font-size: 2em;
}
.right p{
    color: #005CA9;
    font-weight: 650;
}
.logo-container{
    display: flex;
    justify-content: center;
    width: fit-content;
    position: relative;
}
.button-login{
    background: var(--azul);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    width: 23rem;
    height: 3.4rem;
    border: none;
    border-radius: 200px;
}
.button-login:hover{
    background-color: var(--azul-gov);
}
.button-login:active{
    background-color: var(--azul);
}
.blob{
    position: absolute;
    top: 0rem;
    right: 0;
}
.read-more{
    position: absolute;
    bottom: 1.5rem;
}
.read-more div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.read-more svg{
    fill: #005CA9;
}
.read-more p{
    text-transform: uppercase;
    color: #005CA9;
    font-weight: 800;
}

@media (min-width: 721px){
    .read-more{
        display: none;
    }
}
@media (max-width: 720px) {
    .blob{
        max-width: 100vw;
        right: 0rem;
    }
    body{
        display: block;
    }
    .logo-container{
        max-width: 100%;
    }
    .pane{
        max-width: 100vw;
        min-height: 100vh;
    }
    .right{
        padding: 5em 2em 5em 2em;
    }
}
