@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400&display=swap');

body {
    background-image: url("/images/car-min-2.jfif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Rubik', sans-serif !important;
    min-height: 100vh;
    padding: 5vw;
}

* {
    font-size: small;
}

.brand {
    color: #2b684c;
}

a.brand:hover {
    color: #153426;
}

.authForm {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    width: 400px;
    border-radius: 5px;
}

.authForm h2 {
    font-size: xx-large;
}

.form-control {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #2b684c;
    padding-bottom: 1px;
    background-color: inherit;
    height: 40px;
}

.form-control:focus {
    border: 0;
    border-bottom: 1px solid #2b684c;
    box-shadow: none;
    background-color: inherit;
}

.is-invalid:focus {
    border: 0;
    border-radius: 2px;
    background-color: rgba(255, 0, 0, 0.05)
}

.form-check-input {
    border: 1px solid #2b684c;
    border-radius: 0;
}

.form-check-input:checked {
    background-color: #2b684c;
}

.btn {
    background-color: #2b684c;
    ;
}

.btn:hover {
    background-color: #153426;
    ;
}

/* Breakpoint - Bootstrap Medium (MD) */
@media (min-width: 768px) {
    .authForm {
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.75);
        border-radius: 0;
    }

    .authForm h2 {
        margin-top: 20px;
    }

    body {
        padding: 0;
        background-position: bottom left;
    }
}