html {
    color-scheme: dark;
    user-select: none;
    background-image: linear-gradient(-200deg, aqua, rgb(0, 132, 255));
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    min-height: 100svh;
    font-size: x-large;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.text {
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.login-form ul {
    padding: 0;
    margin-left: 2vw;
    margin-right: 2vw;
    margin-top: 10px;
    margin-bottom: 10px;
    list-style: none;
}

.login-form {
    border: 6px solid black;
    background-image: linear-gradient(45deg, rgb(66, 134, 129), rgb(0, 255, 170));
    border-radius: 18px;
    color: black;
    margin-top: 3vh;
    margin-bottom: 1vh;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: min-content;
}
.user-input {
    margin-top: 3vh;
    width: 80vw;
    font-size: 25px;
    text-align: center;
    border-radius: 12px;
    padding: 10px;
}

.form-buttons {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    margin-top: 0vh;
    margin-bottom: 3vh;
}

.input-button {
    width: 100%;
    height: min-content;
    cursor: pointer;
    color: black;
    font-weight: 500;
    font-size: 25px;
    border: 3px solid black;
    background-color: rgb(66, 134, 129);
    border-radius: 30px;
    padding: 10px;
}

.input-button:hover {
    background-color: rgb(78, 219, 208);
}

@media only screen and (min-width: 720px) {
    .user-details {
        border: 6px solid black;
        background-image: linear-gradient(45deg, rgb(66, 134, 129), rgb(0, 255, 170));
        border-radius: 18px;
        color: black;
        margin-top: 3vh;
        margin-bottom: 3vh;
        align-items: center;
        display: flex;
        flex-direction: column;
        width: min-content;
    }
    .user-input {
        margin-top: 1vh;
        width: 50vw;
        font-size: 25px;
        text-align: center;
        border-radius: 12px;
    }
}

@media only screen and (min-width: 1200px) {
    .user-details {
        border: 6px solid black;
        background-image: linear-gradient(45deg, rgb(66, 134, 129), rgb(0, 255, 170));
        border-radius: 18px;
        color: black;
        margin-top: 3vh;
        margin-bottom: 3vh;
        align-items: center;
        display: flex;
        flex-direction: column;
        width: min-content;
    }
    .user-input {
        margin-top: 1vh;
        width: 20vw;
        font-size: 20px;
        text-align: center;
        border-radius: 12px;
    }
}

#error-message {
    font-size: medium;
    color: red;
    margin: 0;
    margin-bottom: 14px;
}

.form-example {
    margin-top: 1vh;
}

.msg {
    text-align: center;
    margin: 5%;
    font-size: 22px;
}

.input {
    margin-top: 3vh;
    cursor: pointer;
}

#forgot-pass {
    width: max-content;
    margin: 0;
    margin-top: 2vh;
    margin-bottom: 1vh;
    text-align: left;
    font-size: 18px;
    color: rgb(36, 90, 141);
}

#forgot-pass:hover {
    cursor: pointer;
}