@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}
body{
    display: flex;
    height: 100dvh;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}
form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    & p{
        font-size: 0.6rem;
    }
}
form .conteiner-inputs{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    & button, & input{
    display: flex-direction: ;;
        padding: 0.8rem 0.5rem;
        border: none;
        border-radius: 0.2rem;
    }
    & button{
        background-color: #6777ef;
        color: #fff;
        cursor: pointer;
        width: 20rem;
        box-sizing: border-box;
        &:hover{
            background-color: #5d70ff;
        }
    }
    & input{
        box-sizing: border-box;
        width: 20rem;
        background-color: transparent;
        border: 1px solid #6777ef;
        color: #222222;
        &::placeholder{
            color: #222222;
        }
    }
}
form .conteiner-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    color: #222222;
    & a{
        color: #6777ef;
    }
}
form h1{
    font-weight: 500;
    color: #222222;
}