* {
    box-sizing: border-box;
    font-family: "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    font-size: 16px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F2EFF4;
    height: 100svh;
    margin: 0;
}

img {
    image-rendering: auto;
}

.login {
    width: 400px;
    background-color: #ffffff;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.login img {
    display: block;
    margin: 30px auto 40px auto;
}

.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* padding-top: 20px; */
}

.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background-color: #181818;
    color: #ffffff;
}

.login form input[type="password"],
.login form input[type="text"] {
    width: 280px;
    min-width: 80%;
    height: 50px;
    border: 1px solid #e3dee4;
    margin-bottom: 20px;
    padding: 0 15px;
}

.login form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #181818;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}

.login form input[type="submit"]:hover {
    background-color: #282828;
    transition: background-color 0.2s;
}

.version {
    text-align: right;
    margin: 10px 10px -10px 0;
    opacity: 0.3;
}

.nowrap {
    display:flex;
    flex-wrap: nowrap;
    max-width: 80vw;
}

.red {
    color: #db3d45;
  }

.extra {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    max-height: 80px;
    width: 80%;
    margin-bottom: 15px;
}

.extra a {
    text-decoration: none;
}

.extra a:hover {
    text-decoration: underline;
}
