@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Righteous&display=swap');



body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
}

body * {
    box-sizing: border-box;
    text-decoration: none;
}

.main-login {
    width: 100vw;
    height: 100vh;
    background: #9343be;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-login>h1 {
    font-size: 3vw;
    color: #f9f9f9;
}

.left-login-image {
    width: 35vw;

}

.right-login {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

#formLogin>h1, 
#formRegistro>h1 {
    text-align: center;
    color: #f9faf9;
    font-weight: 800;
    margin: 0;
    width: 100%; 
}

.textfield,
#formLogin,
#formRegistro {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

.textfield>input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #614070;
    color: #fff;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.textfield>label {
    color: #fff;
    margin-bottom: 10px;
}

.textfield>input::placeholder {
    color: #f0ffff94;
}

.btn-login {
    width: 100%;
    padding: 16px 0px;
    margin: auto;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 4px;
    color: #fff;
    background: #ad13ea;
    cursor: pointer;
    box-shadow: 0px;
    box-shadow: 0px 10px 40px -12px #ad13ea;
}
.btn-registro{
    color: white;
}

.btn-login:hover {
    background-color: #9d4edd;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.7);
}


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

@media only screen and (max-width: 600px) {
    .main-login {
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        padding: 30px 0px;
    }

    .left-login>h1 {
        display: none;
    }

    .left-login {
        width: 100%;
        height: auto;
        padding-top: 10px;
    }

    .right-login {
        width: 100%;
        height: auto;
        padding-bottom: 30px;
    }

    .left-login-image {
        width: 60vw;

    }

    .card-login {
        width: 90%;
    }
}