body {
    background-color: black;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: white;
}

h1 {
    color: white;
}
p {
    text-align: center;
    margin-top: 10px;
}

img {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    margin: auto;
}

.container-login-form {
    width: 100%;
    
}

.container-login-form form {
    width: 100%;
    margin-left: 5px;
}

.container-login-form form label {
    margin-bottom: 10px;
}

.container-login-form form input {
    width: 95%;
    margin-bottom: 10px;
    margin-left: 5px;
}

.container-login-form form button {
    display: flex;
    justify-content: center;
    margin: auto;
}