html {
    background-image: linear-gradient(rgb(141, 241, 141), rgb(103, 179, 103));
    background-attachment: fixed;
    max-height: 100vh;
    overflow-x: hidden;
}

body {
    padding-top: 10px;
    font-family: "main";
    color: rgb(60, 88, 60);
}

h1 {
    font-weight: 100;
    margin: 0;
    height: 60px;
    line-height: 60px;
    font-size: 60px;
    text-align: center;
    letter-spacing: 2px;
}

hr {
    border: none;
    border-top: 3px solid rgb(106, 155, 106);
    border-bottom: 3px solid rgb(106, 155, 106);
    height: 3px;
}

label, input {
    font-family: "main";
    font-size: 40px;
    color: rgb(60, 88, 60);
    transition: all 0.1s;
}

input {
    border-radius: 10px;
    border: 4px solid rgb(106, 155, 106);
}

input:hover {
    transform: scale(1.01);
}

input:focus {
    outline: none;
}

input[type="submit"] {
    background-color: rgb(135, 255, 135);
}

input[type="submit"]:hover {
    transform: scale(1.02);
}

input[name="logout"] {
    position: fixed;
    top: 0;
    left: 0;
    margin: 20px;;
}

/* CLASSES */

.form-items {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgb(146, 235, 146);
    border-radius: 15px;
    height: 315px;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 95%;
}

/* IDS */

#login-form {
    background-color: rgb(158, 253, 158);
    border-radius: 15px;
    margin: auto;
    margin-top: 50px;
    padding: 20px;
    width: 525px;
    height: 395px;
    border: 5px solid rgb(106, 155, 106);
    box-shadow: 0 5px rgb(91, 133, 91);
}

#logo {
    display: block;
    margin: auto;
    width: 400px;
}

#bg-circles {
    margin: 0%;
    padding: 0%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

#error {
    position: fixed;
    margin-bottom: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    text-wrap: nowrap;
    opacity: 0;
    transition: all 0.25s;
}

#welcome {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-wrap: nowrap;
    font-size: 42px;
}

/* FONTS */

@font-face {
    font-family: "main";
    src: url("fonts/main.ttf");
}