html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(20, 20, 20);
    color: white;
    font-family: "Roboto";
}

.content {
    min-height: calc(100vh - 1%);
    width: 100%;
}

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

.form {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    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.2);
}

.form * {
    margin: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

form label:nth-child(1) {
    margin-top: 16px;
}

form label {
    font-size: 18px;
}

input[type=text], input[type=password] {
    padding: 10px;
    border-radius: 5px;
    border: 0;
    min-width: 300px;
    font-size: 16px;
    
    transition: 0.1s;
}

input[type=text]:focus, input[type=password]:focus {
    outline: 3px solid #ffc434;
}

input[type=submit] {
    margin-top: 30px;
    background-color: #ffd979;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-family: "Roboto";
    font-weight: bold;
    border: 0;
    padding: 10px;
    cursor: pointer;
    
    transition: 0.1s;
}

input[type=submit]:hover {
    background-color: #ffffff;
    box-shadow: 0px 0px 16px 0px rgba(255,255,255,1);
}

#loading {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #ffd979;
    
    animation: fade-in 0.1s;
}