html {
    width: 100%;
    height: 100%;
}

body{
    background: url("../images/bg_gradient.png");
    width: 100%;
    height: 100%;
    background-size: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
    scroll-behavior: smooth;
    color: var(--blue-color);
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 35px;
    margin: 0 auto;
    padding: 75px 50px;
    width: 300px;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    font-family: koliko, serif;
}

.login-logo {
    width: 100px;
    height: 100px;
    transition: ease-in 0.1s;
}

.login-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

.login-info > h1 {
    margin: 0;
}