*{
    font-family: "Poppins";
}

body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-width: 100vw;
    background-image: url("../image/wallpaper/panda-6049131_1920.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
}

.painel{
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    width: 30vw;
    padding: 10px;
    border-radius: 10px;
}

label{
    font-size: 1.3em;
    font-weight: 500;
    cursor: text;
}

.prosseguir{
    background-color: rgba(255, 255, 255);
    height: 5vh;
    font-size: 1.1em;
    border-color: transparent;
    border-radius: 5px;
    transition: 500ms ease-in-out;
    font-weight: 500;
    cursor: pointer;
}

.prosseguir:hover{
    background-color: rgba(255, 255, 255, 0.6);
}

.input-email{
    background-color: #6363637a;
    min-width: 18vw;
    min-height: 4vh;
    margin: 3px 0 0 0;
    border-top-color: transparent;
    border-radius: 5px;
    border-color: transparent #75757583 #75757583 transparent;
    color: #F4F2F3;
    font-size: 1em;
    font-family: "Poppins-SemiBold";
    letter-spacing: 1px;
}

.input-email::placeholder{
    color: #ffffff;
    font-family: "Poppins-Medium";
    font-size: 1em;
    letter-spacing: 1px;
}