:root {
    --cor1:#32759E;
    --cor2:#32E2F4;
    --cor3:#CCDCE6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: all 1s;
}

main {
    display: flex;
    flex-direction: column;
    background: url(../assets/imgs/main-home-studeo.webp);
    background-position: center;
    background-size: cover;
    max-width: 100vw;
    height: 100vh;
}



.section-main {
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}


.section-text {
    margin-top: 4em;
}

.section-text > h1 {
    color: var(--cor1);
    font-size: 35pt;
    max-width: 250px;
}

.section-text > p {
    font-size: 11pt;
    font-weight: 700;
    color: var(--cor1);
    margin-top: 1em;
    max-width: 550px;
}

.section-login {
    display: flex;
    flex-direction: column;
}

.login {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-top: 3em;
    margin-right: 5em;
}

.login > img {
    width: 340px;
}

.login > p {
    font-size: 11pt;
    font-weight: 600;
    color: var(--cor1);
    margin-top: 2em;
}

input[type="text"] {
    border: 4px solid var(--cor2);
    border-radius: 2em;
    background-color: #ccdce662;
    padding: 1em;
    width: 100%;
}

.login-entrar {
    background: var(--cor2);
    color: white;
    border-radius: 2em;
    font-weight: 700;
    border: none;
    padding: 1em;
    transition: all 1s;
    cursor: pointer;
}

.login-entrar:hover {
    background: var(--cor1);
    transition: all 0.5s;
    transform: translateX(2em);
}


.login-esqueceu {
    color: var(--cor1);
    font-weight: 700;
    border: none;
    border-radius: 2em;
    background: #ccdce63a;
    padding: 1em;
    cursor: pointer;
    transition: all 1s;
}

.login-esqueceu:hover {
    background: var(--cor1);
    transition: all 0.5s;
    transform: translateX(2em);
    color: white;
}




footer {
    background: var(--cor3);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1em;
}

