form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-left:40%;
    font-size: 20px;
    background-color: rgb(37, 36, 36);
    padding: 10px;
    border-radius: 5px;
}
input {
    display: table;
    margin: 5px;
    height: 40px;
    font-size: inherit;
}

label {
    display: table;
    color: white;
    margin: 5px;
}

body {
    background-color: #181515;
    color: white;
}

button {
    width: 250px;
    height: 40px;
    font-size: 30px;
    align-self: center;
    margin: 10px;
    background-color: #858585;
    border-radius: 6px;
}

.text-danger {
    color:red;
}

