html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
body {
    background: url("/login-background.svg") no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
}

.login {
        /* From https://css.glass */
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.title {
    font-size: 1.7em;
    font-weight: 500;
    text-align: center;
}
.subtitle {
    font-size: 1em;
    font-weight: 400;
    color: rgb(92, 92, 92);
    text-align: center;
}
.input {
    background: white;
    border-radius: 12px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgb(220, 220, 220);
    width: 100%;
}
.input input {
    background: none;
    border: none;
    font-size: 1.1em;
    padding: 12px 0;
    outline: none;
    margin: 0;
    height: 100%;
    width: 100%;
}
.input input::placeholder {
    color: gray;
    font-weight: lighter;
}
.input input::-webkit-input-placeholder {
    color: gray;
    font-weight: lighter;
}
.input input::-moz-placeholder {
    color: gray;
    font-weight: lighter;
}
.input input::-ms-input-placeholder {
    color: gray;
    font-weight: lighter;
}
.input svg {
    height: 20px;
    width: 20px;
    fill: gray;
}
.title-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.icon {
    background: white;
    padding: 10px;
    height: 70px;
    width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgb(0,0,0,0.2);
}
.input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.login-button {
    background: #008eff;
    padding: 10px 20px;
    font-size: 1.1em;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    color: white;
    width: 100%;
    transition-duration: 0.2s;
}
.login-button:hover {
    background: #007ce1;
}
#error {
    color: rgb(255, 74, 74);
}
@media screen and (max-width: 867px) {
    .login {
        width: 95%;
    }
}