body {
    display: flex;
    align-content: center;
    justify-content: center;

    text-align: center;
    margin-top: 5%;
    margin-inline: 25%;
    background-color: dimgray;
    font-size: larger;
    font-family: "monospace", Serif;
}

.form-card {
    background-color: white;
    border: lightgray solid 10px;
    border-radius: 10px;
    padding: 10px
}

.input-group {
    display: flex;
    width: 100%;
    justify-content: space-between;

    margin-bottom: 10px;
}

label {
    margin-right: 20px;
}

button {
    width: 75%;
}

.fail {
    color: crimson;
    font-size: medium;
    margin-left: 12%;
    width: 75%;
}

.success {
    color: green;
    font-size: medium;
}

.message {
    display: none;
}