.form-wrapper > form {
    display: flex;
    flex-flow: column;
    gap: 1rem;
    min-width: min(300px, 90%);
}

.form-wrapper {    
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: min(4rem, 10vw);
    max-width: 95%;
    box-sizing: border-box;
}

section {
    flex: 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    min-height: 100%;
    display: flex;
    margin: 0;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-image: url(bg.JPG);
    background-position: center;
    background-size: cover;
}

html {
    height: 100%;
    margin: 0;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
}

button {
    background-color: rgba(107, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 1rem;
    border: 0;
    padding: 1rem;
    font-size: 1rem;
    transition: background-color 300ms ease;
    cursor: pointer;
}

button:active, button:hover {
    background-color: rgba(107, 0, 0, 0.6);
}

input {
    background-color: rgba(255, 255, 255, 0.3);
    /* border: 1px solid rgba(0, 0, 0, 0.3); */
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    font-size: 1rem;
}

label {
    font-size: 1.2rem;
    font-weight: bold;
}

.msg {
    margin: 1rem 0rem;
    color: rgb(58, 15, 15);
    font-weight: bold;
}

p {
    margin-top: 0;
    font-size: 1.1rem;
}

.hint {
    font-size: 0.7rem;
    text-align: right;
    max-width: 70%;
    margin-left: auto;
    margin-top: 3rem;
    /* color: gray; */
}