html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: url(../res/img/background.png) no-repeat;
}

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

.loginbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 450px;
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.loginbox > form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 20px;
    width: 100%;
    margin-bottom: 30px;
    line-height: 20px;
}

.loginbox > form > input {
    width: 65%;
    height: 30px;
    caret-color: rgba(71, 227, 255, 0.7);
    padding-left: 10px;
    border-style: none;
    outline-style: none;
    border-radius: 20px;
    margin: 2em 0em 0em 0em;
}

.loginbox > form > button {
    width: 50%;
    height: 30px;
    padding-left: 10px;
    border-style: none;
    outline-style: none;
    background: linear-gradient(to right,rgba(59, 137, 255, 0.7),rgba(122, 186, 255, 0.7));
    color: rgba(255, 255, 255, 1);
    border-radius: 20px;
    margin: 2em 0em 0em 0em;
}

.loginbox > span {
    font-size: 14px;
    margin-bottom: 30px;
}

.header-icon {
    margin-top: 50px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

a {
    text-decoration: none;
}

a:link {
    color:rgba(59, 137, 255, 0.7);
}

a:visited {
    color: rgba(59, 137, 255, 0.7);
}

a:hover {
    color: rgba(122, 186, 255, 0.7);
}

.darkmode {
    position: fixed;
    bottom: 20px;
    background: rgba(0,0,0,0.5);
    right: 30px;
    width: 30px;
    height: 30px;
    border-style: none;
    border-radius: 50%;
}