@font-face {
    font-family: "Montserrat";
    src: url("/css/static/Montserrat-Medium.ttf");
}


body {
    height: 100vh;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgb(0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    margin: 0;
}

body * {
    /* border: 2px solid black; */
    font-family: "Montserrat";
}

.wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.infoBox {
    width: 90%;
    background-color: #00000030;
    color: white;
    padding: 2.5%;
    border-radius: 3em;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
}

.row {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column {
    width: 7em;
    padding: 0.5em;
}

.box {
    display: flex;
    align-self: center;
    box-shadow: #0000006b 2px 2px;
    background-color: rgb(219, 223, 227);
    border-radius: 2em;
    padding: 2em;
    flex-direction: column;
    width: 12em;
}

label {
    display: flex;
    margin: 0;
    font-size: 0.8em;
    color: #555555;
    margin-bottom: 0.5em;
}

input {
    display: flex;
    margin: 0 0 1.5em 0;
    border-radius: 0.5em;
    border: 1px solid;
    transition: .35s ease-in-out;
}

input:focus {
    background-color: #00000011;
    outline-color: #555555;
}

input.submit {
    background-color: #027202;
    color: white;
    align-self: flex-end;
    margin: 0;
    margin-left: auto;
}

input.submit:hover {
    background-color: #000;
}

a {
    display: flex;
    font-size: small;
    color: #000000;
    text-decoration: none;
    margin-bottom: 0.5em;
    user-select: none;
}

a:hover {
    text-decoration: underline;
}

.error {
    margin-top: 0.5em;
    color: red;
    text-align: center;
    line-height: 1.5;
}
