@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
}

body {
    overflow: hidden;
    font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.login {
    display: flex;
}

.esquerda {
    background-color: black;
    width: 55vw;
    min-height: 100vh;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    margin-left: 5%;
    width: 45vw; 
    flex-shrink: 0;
}

.direita {
    background-color: black;
    width: 45vw;
    min-height: 100vh;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-login{
    text-align: center;
    margin-right: 5%;
    width: 35vw;
    height: 85vh;
    flex-shrink: 0;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.box-login > h1{
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 40px;
    max-width: 70%;
}

.divLogin, .divsenha{
    width: 70%;
    height: 8%;
    padding: 0;
    margin: 10px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

#login, #senha{
    background-color: rgba(255, 255, 255, 0.50);
    width: 100%;
    height: 100%;
    border-style: none;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.791);
}

.divsenha > i{
    position: absolute;
    width: 50px;
    font-size: 30px;
    cursor: pointer;
}

a{
    text-decoration: none;
}


.esqueceu-senha{
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.roxo{
    border: none;
    color: white;
    width: 20vw;
    height: 7vh;
    padding: 5px auto;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 400;
    border-radius: 30px;
    background: linear-gradient(90deg, #6248FF 0%, rgba(36, 0, 255, 0.25) 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.791);
    cursor: pointer;
    transition: 0.3s;
}

.google{
    display: flex;
    align-items: center;
    border: none;
    color: white;
    width: 20vw;
    height: 7vh;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 400;
    border-radius: 30px;
    background: linear-gradient(90deg, #0060FF -55.11%, rgba(136, 181, 255, 0.25) 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.791);
    cursor: pointer;
    transition: 0.3s;
}

.apple{
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    color: white;
    width: 20vw;
    height: 7vh;
    margin-bottom: 15px;
    padding-left: 25px;
    font-size: 20px;
    font-weight: 400;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 32.61%, rgba(0, 0, 0, 0.40) 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.791);
    cursor: pointer;
    transition: 0.3s;
}

#logo-google{
    width: 12%;
    padding: 5%;
}

#logo-apple{
    width: 12%;
    padding: 5%;
}

.roxo:hover,
.google:hover,
.apple:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.blur1, .blur2, .blur3, .blur4{
    width: 30vw;
    height: 15vw;
    background-color: #6248FF;
    border-radius: 547px;
    background: var(--roxoMEGADEV, #6248FF);
    filter: blur(150px);
    position: absolute;
    left: -5%;
    top: -10%;
    z-index: 0;
}

.blur2{
    position: absolute;
    left: 15%;
    top: 100%;
}

.blur3{
    position: absolute;
    left: 60%;
    top: -10%;
}

.blur4{
    position: absolute;
    left: 90%;
    top: 90%;
}

p{
    color: white;
}

span{
    font-weight: 700;
}

#criar{
    text-decoration: underline;
}

#criar:hover{
    cursor: pointer;
}

.logo-solo{
    display: none;
    width: 200px;
}

.logo-solo {
    transition: all 0.3s;
    width: 40%;
    animation-name: logoAnimacao;
    animation-duration: 40s;
    animation-delay: 0.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.botoes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 15px;
}

@media(max-width: 1490px) {
    .esquerda {
        width: 65%;
    }

    #senha, #login{
        padding-left: auto;
    }

    #logoAnimacao {
        animation: scale-in-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
    }

    @keyframes logoAnimacao {
        100% {
            rotate: -360deg;
        }
    }
}

@media(max-width: 1024px){
   .esquerda{
        display: none;
    }

    .logo-solo{
        display: flex;
        width: 30%;
        padding: 30px 0;
    }
    
    .direita{
        width: 100%;
        flex-direction: column;
    }

    .box-login{
        margin: 35px;
        width: 80%;
    }

    .roxo, .google, .apple{
        width: 120%;
        font-size: 20px;
    }
    
    .box-login {
        height: 60vh;
    }

    #logoAnimacao {
        animation: scale-in-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
    }

    @keyframes logoAnimacao {
        100% {
            rotate: -360deg;
        }
    }
}

@media(max-width: 700px){
    .esquerda{
        display: none;
    }

    .logo-solo{
        display: flex;
        width: 50%;
        padding: 50px 0;
    }

    .direita{
        width: 100%;
        flex-direction: column;
    }
    .box-login{
        width: 80%;
        margin: 0;
        margin-bottom: 100px;
    }

    .google, .apple{
        width: 100%;
    }

    .roxo, .google, .apple{
        width: 100%;
        font-size: 18px;
    }

    #senha, #login{
        width: 110%;
    }

    #logoAnimacao {
        animation: scale-in-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
    }

    @keyframes logoAnimacao {
        100% {
            rotate: -360deg;
        }
    }
}