:root {
    font-size: 80%;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(90deg,rgba(0, 48, 99, 0.8) 20%, rgba(0, 0, 0, 0.6) 100%), url('/assets/images/bg.jpg');
    background-size: cover;
    animation-delay: 300ms;
    animation: blurIn 500ms ease-out forwards;
    background-position: bottom;
    background-repeat: no-repeat;
    text-align: center
}

@keyframes blurIn {
    0% { backdrop-filter: blur(0px); }
    100% { backdrop-filter: blur(5px); }
}

body {
    position: relative;
    z-index: 1;
}


.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: scale(1.2) }
    100% { opacity: 1; transform: scale(1); }
}

form {

    animation: fadeIn 1s ease-out;
}

.form-signin .checkbox {
    font-weight: 400;
}

.form-signin .form-floating:focus-within {
    z-index: 2;
}

.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.form-check-label, h2 {
    color: #fff;
}
