@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nanum Gothic', sans-serif;
}

main{
    width: 100vw;
    height: 100vh;
    background: #201b2c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.esquerda, .direita{
    display: flex;
    width: 50vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .esquerda h1 {
        position: absolute;
        padding: 2%;
        top: 0;
        text-align: center;
        font-size: 4em;
        color: #77ffc0;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }
  
    .esquerda::before{
        pointer-events: none;
        content: "";
        position: absolute;
        width: 32%;
        height: 10%;
        background-color: #14fff1;
        top: 13%;
        left: 34%;
        transform: perspective(64px) rotateX(40deg) scale(1, 0.35);
        filter: blur(30px);
        opacity: 0.7;
    }

.esquerda-animacao {
    position: absolute;
    width: 35vw;
    top: 20%;
}

.zona-login{
    display: flex;
    width: 60%;
    height: 82%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 35px;
    background: #2f2841;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
}

    .zona-login h1{
        display: flex;
        margin-top: -20%;
        margin-bottom: 15%;
        font-size: 3em;
        color: #00ff88;
    }

.layout-login {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

    .layout-login label{
        color: #f0ffffde;
        margin-bottom: 10px;
    }

    .layout-login input{
        width: 100%;
        border: none;
        border-radius: 10px;
        padding: 15px;
        background: #514869;
        color: #f0ffffde;
        font-size: 12pt;
        box-shadow: 0px 10px 40px #00000056;
        outline: none;
        box-sizing: border-box;
    }

.fazer-login{
    width: 50%;
    padding: 16px 0px;
    margin: 10px auto;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2b134b;
    background: #00ff88;
    cursor: pointer;
    box-shadow: 10px 10px 35px #00ff8052;
}

.zona-login h2, a{
    font-size: 12pt;
    color: #77ffc0;
}

/* .layout-login-funcao label{
    color: #f0ffffde;
    margin-bottom: 10px;
    margin: 10px 0px;
} */


/* 
.layout-login-funcao > input{
    cursor: pointer;
}

.layout-novologin {
    position: relative;
    top: 17%;
    display: flex;
    left: 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 20px 0px;
}

.layout-novologin > label {
    color: #f0ffffde;
    width: 200px;
    margin: 0px 0px 10px;
}

.layout-novologin > input {
    width: 210px;   
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
    display: block;
    margin-top: 10px;
}

.layout-novologin-funcao {
    position: relative;
    top: 17%; /* Ajuste o valor conforme necessário 
    left: 40px;
}

.layout-novologin-funcao > label{
    color: #f0ffffde;
    width: 200px;
    margin: 0;
}

.layout-novologin-funcao > input{
    cursor: pointer;
}

.layout-login > input::placeholder{
    color: #f0ffff94;
} */



.criar-conta{
    position: relative;
    top: 20%;
    width: 50%;
    padding: 16px 0px;
    margin: 10px auto;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2b134b;
    background: #00ff88;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00ff8052;
    left: 75px;
}

.voltar{
    position: relative;
    top: 35%;
    left: 80px;
    font-size: 15pt;
    color: #00ff88;
}

@media only screen and (max-width: 950px){
    .zona-login{
        width: 85%;
    }
}

@media only screen and (max-width: 600px){
    .main-login{
        flex-direction: column;
    }
    .esquerda > h1{
        display: none;
    }
    .esquerda {
        width: 100%;
        height: auto;
    }
    .direita {
        width: 100%;
        height: auto;
    }
    .esquerda-animacao{
        width: 50vw;
    }
    .zona-login{
        width: 90%;
    }
}

.hide {
    display: none;
  }