* {
    font-family: 'Inter', sans-serif;
    outline: 0;
}

html {
    background: url(/images/bg.png) top center repeat;
    height: 100vh;
}

body {
    box-sizing: border-box;
    line-height: 24px;
    margin: 0;
    padding: 0;
    text-align: center;
}

form {
    background: var(--primaryColor);
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(0 0 0 / 35%);
    box-sizing: border-box;
    left: 0;
    margin: 0 auto;
    max-width: 100%;
    padding: 40px;
    position: absolute;
    right: 0;
    top: 80px;
    width: 350px;
    
    #logo {
        img {
            width: 200px;
        }
    }

    #site {
        color: var(--tertiaryColor);
        font-family: var(--altFont);
        font-size: 20px;
        font-style: italic;
        font-weight: 600;
        margin: 15px 0 40px 0;
    }
    
    label {
        color: var(--tertiaryColor);
        display: block;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: .7px;
        line-height: 1em;
        padding: 0 0 7px 2px;
        text-align: left;
    }
    
    input[type=password], 
    input[type=text] {
        background: #fff;
        border: 0;
        border-radius: 5px;
        box-shadow: inset 2px 2px 3px rgb(75 75 75 / 25%);
        box-sizing: border-box;
        color: #000;
        font-size: 16px;
        height: 50px;
        letter-spacing: .5px;
        margin-bottom: 30px;
        padding: 0 15px;
        width: 100%;
    }
    
    button {
        background: var(--secondaryColor);
        border: 0;
        border-radius: 4px;
        box-shadow: 0 0 5px rgb(0 0 0 / 20%);
        color: #fff;
        cursor: pointer;
        font-size: 20px;
        font-style: italic;
        font-weight: 700;
        line-height: 1em;
        padding: 15px 0;
        text-transform: uppercase;
        width: 100%;
        
        &:hover {
            filter: brightness(1.1);
        }
        
        &:active {
            box-shadow: var(--shadowInset);
        }
    }
}

#error {
    background: #822a2a;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 20px rgb(0 0 0 / 35%);
    box-sizing: border-box;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    left: 0;
    line-height: 1em;
    margin: 0 auto;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
}