:root {
    --font-sans : "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --topbar-bg : #2f2f2f;
    --topbar-fg : #ffffff;
    --topbar-muted : rgba(255, 255, 255, .75);
    --topbar-gap : 18px;
    --topbar-height : 48px;
    --topbar-pad-x : 18px;
    --header-bg : #ffffff;
    --nav-color : #f26522;
    --nav-hover : #b43d05;
    --nav-accent : #0aa0c8;
    --radius : 14px;
    --bg-gradient : linear-gradient(90deg, #1b2a3c 0%, #123453 45%, #0b4e7a 100%);
    --shadow-soft : 0 18px 40px rgba(0, 0,0, .25);
    --shadow-soft-hover : 0 22px 50px rgba(0, 0,0, .32);
    --border-h : 30px;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*,*:before,*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

@media (min-width: 1100px) {
    body {
        margin:0;
        font-size: 16px;
        font-family: Inter;
        background-color: #fff;
        background-size: cover;
        background-position: center top;
        background-attachment: fixed;
        opacity: 1;
        width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        color: black;
        padding: 0;
    }
}

@media (max-width: 1100px) {
    body {
        margin:0;
        font-size: 16px;
        font-family: Inter;
        background-color: white;
        opacity: 1;
        width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        color: black;
    }
}

@media (min-width: 1000px) {
    .user-login-form {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        background-color: #eee;
        padding: 2em;
        margin-bottom: 2em;
    }
}

@media (max-width: 1000px) {
    .user-login-form {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        background-color: #eee;
        padding: 2em;
        margin-bottom: 2em;
    }
}

.user-login-form input[type=password], .user-login-form input[type=text] {
    height: 3em;
    clear: both;
    float: none;
    font-size: 1em;
    border: 1px solid #bcc2c7;
    border-radius: 10px;
    padding-left: 1em;
    width: 100%;
    padding-right: 1em;
}

.user-login-form input[type=submit] {
    height: 3em;
    clear: both;
    float: none;
    font-size: 1em;
    border: 1px solid #bcc2c7;
    border-radius: 10px;
    padding-left: 1em;
    width: 100%;
    padding-right: 1em;
    margin-top: 1em;
    background-color: black;
    color: white;
    cursor: pointer;
}

#homepage {
    background-color: black;
    width: 100%;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-items: center;
    justify-content: center;
    
}