*{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    height: 100vh;
    background-color: rgb(7, 27, 5);
    display: flex;
    justify-content: center;
    align-items: center;
}
main{
    width: 100%;
    display: flex;
    justify-content: center;
}

.divForm{
    padding: 25px;
    background-color: rgba(95, 104, 112, 0.295);
    border-radius: 25px;
    box-shadow: 10px 5px 25px rgba(0, 0, 0, 0.404);
    display: flex;
    flex-direction: column;
    text-shadow: 3px 3px 1px black;
    color: rgb(90, 90, 90);
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    .campos{
        display: flex;
        flex-direction: column;
        margin-top: 15px;
        font-weight: 900;
        input{
            background-color: rgba(94, 95, 97, 0.5);
            border: none;
            padding: 10px;
            border-radius: 5px;
            color: rgb(255, 255, 255);
        }
        input:focus{
            border: 1px solid rgba(75, 75, 248, 0.568);
            color: rgb(255, 255, 255);
        }
        .entrar{
            margin-top: 15px;
            border: 1px solid white;
            color: white;
            background-color: rgb(17, 37, 7);
            padding: 15px;
            border-radius: 25px;
            box-shadow: 7px 5px 15px rgba(0, 0, 0, 0.432);

        }
    }
    
}