@font-face {
    font-family: TitilliumWebRegular;
    src: url("/fonts/TitilliumWeb-Regular.ttf");
}

@font-face {
    font-family: TitilliumWebBold;
    src: url("/fonts/TitilliumWeb-Bold.ttf");
}

html,
body {
    margin: 0;
    font-family: TitilliumWebRegular;
    box-sizing: border-box;
    background: url("/img/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

body * {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: TitilliumWebBold;
    color: #1d3c2e;
}

.form-control, .form-select, .btn, .alert  {
    border-radius: 0;
}

.login__image {
    max-width: 300px;
}

.login__container {
    margin: 100px 0;
}

@media only screen and (max-width: 768px) {

    .login__image {
        max-width: 150px;
    }
}
