@font-face {
    font-family: Nunito;
    src: url(../assets/fonts/Nunito.ttf)
}

:root {
    --text-color: hsl(180, 21%, 14%);
    --background-color: azure;
    --font-family: Nunito;
    --bg-color: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
}

input:focus {
    outline: none;
}

*:not(html) {
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html {
    height: 100dvh;
}

body {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header {
    display: flex;
    background-image: #e0f7fa;
    justify-content: space-between;
}

#header-image {
    filter: hue-rotate(335deg);
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    background: var(--bg-color);
}

#login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}