:root {
    font-size: 10px;
    --fullGrid: 1 / 1 / -1 / -1;
}

@font-face {
    font-family: HelveticaNeue;
    src: url(https://inf-shared-assets-s3.s3.amazonaws.com/fonts/HelveticaNeue-Regular.ttf);
}

@font-face {
    font-family: HelveticaNeue-Medium;
    src: url(https://inf-shared-assets-s3.s3.amazonaws.com/fonts/HelveticaNeue-Medium.otf);
}

body {
    font-family: "HelveticaNeue", sans-serif;
    background-color: #fcfcfc;
}

header {
    display: grid;
    grid-template-rows: 110vh;
    overflow: hidden;
    box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.5);
}

.footer-text{
    font-family: "HelveticaNeue-Medium", sans-serif;
    color: white;
    /*font-weight: bold;*/
    font-size: 1vw;
    position: fixed;
    bottom: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.form-group{
    overflow: hidden;
}

.loginBG {
    border-radius: 15px;
    -webkit-box-shadow: -1px 2px 16px 6px rgba(0,0,0,0.05);
    box-shadow: -1px 2px 16px 6px rgba(0,0,0,0.05);
    padding: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    backdrop-filter: blur(5px);
    /*margin-top: 15vw;*/
}

.loginBG .bg-img{
    opacity: 0.50;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.loginLogo {
    position: relative;
    margin-top: -15%;
}

@media only screen and (max-width: 300px) {
    .loginLogo {
        margin-top: -19%;
    }
    .p-0-sm{
        padding: 0!important;
    }
}

.loginForm {
    padding: 5%;
    position: relative;
    color: #ffff;
}

.loginForm h1{
    font-size: 8vh;
}

.loginForm h3{
    font-size: 3vh;
}

.loginForm a {
    font-size:14px;
    text-decoration: underline;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.submit-img{
    margin-left: 2px;
    height: 90%;
    width: 90%;
}

.form-input {
    padding: 2% 5px 2% 15px;
    min-width: 100%;
    min-height: 2vw !important;
    border: 2px solid #ffffff;
    background-color: transparent;
    font-size: 4vh;
    color: #ffffff;
    /*text-transform: uppercase;*/
    /*letter-spacing: 5px;*/
}

.submit-text{
    font-size: 2vw;
    letter-spacing: 10px;
    color: #ffffff;
}

.card-text{
    font-size: 2vw;
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .submit-img{
        width: 80%;
        height: auto;
    }
    #hide {
        display: none; /* hide the BR tag for wider screens (i.e. disable the line break) */
    }
}

@media only screen and (max-width: 1000px) {
    #hide {
        display: none; /* hide the BR tag for wider screens (i.e. disable the line break) */
    }
}

@media only screen and (min-width: 2500px) {
    #hide {
        display: none; /* hide the BR tag for wider screens (i.e. disable the line break) */
    }
    .loginForm h1{
        font-size: 6vh;
    }
}

@media only screen and (min-width: 1400px) {
    .form-input, .alert-primary, .submit-text, .card-text {
        font-size: 1.25vw !important;
    }
}


@media only screen and (max-width: 400px) {
    .submit-img{
        width: 100%;
        margin-top: 15%;
    }
    .form-input{
        padding: 5% 5px 5% 15px;
    }
    .loginForm h1{
        font-size: 5vh !important;
    }

    .form-input {
        font-size: 4vw !important;
    }
}

@media only screen and (max-width: 480px) {
    .stop-scroll{
        height: 100%;
        overflow: hidden;
    }
}

.form-input:focus{
    outline: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1; /* Firefox */
    letter-spacing: 10px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ffffff;
    letter-spacing: 10px;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #ffffff;
    letter-spacing: 10px;
}

.loginForm form {
    padding: 15px;
}

.video-bg {
    grid-area: var(--fullGrid);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-bg::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    grid-area: var(--fullGrid);
    display: grid;
    align-content: center;
    text-align: center;
    /*background-color: rgba(0, 0, 0, 0.50);*/
}

::-moz-selection {
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
}

::selection {
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
}

.medium-gray{
    color: #6B7280
}
.medium-gray:hover{
    color: #4B5563
}

.shake {
    animation-name:action-shake;
    animation-duration: 0.5s;
}
@keyframes action-shake {
    0%,
    100% {
        transform:translateX(0)
    }
    15% {
        transform:translateX(-3px)
    }
    25%,
    65% {
        transform:translateX(3px)
    }
    45%,
    85% {
        transform:translateX(-2px)
    }
}

.alert-primary{
    color: #ffff;
    background-color: rgba(0, 176, 240, 0.5);
    font-size: 1.5vw;
    border: none;
    border-radius: 0;
    margin: 0;
}

#forgot-password{
    display: block;
}
#error{
    display: none;
}

.fade-in {
    animation: fadeIn linear 1s;
    -webkit-animation: fadeIn linear 1s;
    -moz-animation: fadeIn linear 1s;
    -o-animation: fadeIn linear 1s;
    -ms-animation: fadeIn linear 1s;
    /*display: none;*/
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

.fade-out {
    animation: fadeOut linear 1s;
    -webkit-animation: fadeOut linear 1s;
    -moz-animation: fadeOut linear 1s;
    -o-animation: fadeOut linear 1s;
    -ms-animation: fadeOut linear 1s;
    /*display: none;*/
}

@keyframes fadeOut {
    0% {opacity:1;}
    100% {
        opacity:0;
        /*display: none !important;*/
    }
}

@-moz-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-webkit-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-o-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-ms-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

a:hover, a:focus, a:active {
    text-decoration: none !important;
    color: #ffff !important;
}

input {
    width: 80%;
}
