@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Spicy+Rice&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Catamaran", sans-serif;
}
body{
    width: 100vw;
    height: 100vh;
}
.login{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}
.conteudo{
    background-color: #fff;
    width: 810px;
    height: 530px;
    padding: 3px;
    border-radius: 3px;
    border-style: solid;
    border-color: #fff;
    display: flex;
    align-items: center;
}
.login-text{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    flex-basis: 50%;
    text-align: justify;
    height: 100%;
    border-radius: 3px;
}
.login-form{
    flex-basis: 50%;
    display: flex;
    color: black;
    flex-direction: column;
    align-items: center;
}
.login-form form{
    padding: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.login-form form a{
    margin-top: 15px;
    text-decoration: none;
}
.login-form form a{
    margin-top: 15px;
    text-decoration: none;
}
.links{
    display: flex;
    justify-content: space-between;
}
.login-form h2{
    margin-top: 20px;
}
@media (max-width: 830px){
    .login-text{
        display: none;
    }
    .login-form{
        flex-basis: 100%;
    }
    .conteudo{
        width: 402px;
        height: 530px;
        padding: 3px;
        border-radius: 3px;
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 420px){
    .login-text{
        display: none;
    }
    .login-form{
        flex-basis: 100%;
    }
    .conteudo{
        width: 350px;
        height: 530px;
        padding: 3px;
        border-radius: 3px;
        display: flex;
        justify-content: center;
    }
}