body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}

#Page_Footer {
	z-index: 10;
}

body::before {   
    background-color: #000;
    background-image: none;
	background-position: right;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	content: "";
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	transition: unset;
	width: 100vw;
	z-index: 2;
    animation: .5s black-bg ease 7.5s both;
}

@keyframes black-bg {
    0%      {   opacity: 0; }
    100%    {   opacity: .8; }
}

.video-background {
    position: fixed;
    z-index: -1;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}
  
.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}


/* --------------------------------------   FORM START  ----------------- */
form  {
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border: 2px solid rgb(255, 255, 255);    
    display: grid;
    padding: 120px 50px 65px 50px;	
    position: fixed;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 340px;
    max-height: 300px;
    height: min-content;
    min-width: 390px;
    width: fit-content;
    background: url(/_customers/images/ui/AIAA/logo.png);
    background-position: center top 30px;
    background-repeat: no-repeat;
    background-size: 250px;
    color: #000;
    z-index: 10;
    animation: flip-in-ver-left 0.45s ease-out 8.5s both;
}
    
@keyframes flip-in-ver-left {
    0% {
      transform: rotateY(80deg);
      opacity: 0;
    }
    100% {
      transform: rotateY(0);
      opacity: 1;
    }
  }

    form div {
        font-size: 12px;
        text-align: left;
        /* grid-area: 6 / 1 / 9 / 2; */
        grid-area: 6 / 1 / 8 / 1;
        margin-top: 60px;
        color: #fff;
        font-family: Helvetica, sans-serif;
        font-style: normal;
        padding:10px;
        letter-spacing: 1px;
        background: #00000099;
    }
    
    input {
        padding: 10px 20px;
        color: #FFF;
        background: #00000033;
        border-bottom: 1px solid #ccc;
        border-top: unset;
        border-left: unset;
        border-right: unset;
        font-size: 14px;
        outline: none;
        margin-top: 5px;
        width: 400px;
        height: 40px;
        border-radius: 0px;
    }
    
    input[name="email"] {
        grid-area: 2 / 1 / 3 / 2;
    }
    
    input[name="password"] {
        grid-area: 3 / 1 / 4 / 2;	
    }
    
    input[name="code"] {
        grid-area: 4 / 1 / 5 / 2;
    }
    
    input[name="code"]::placeholder {
        color: #ccc;
    }
    
    ::placeholder {
        color: #ccc;
        font-family: var(--form-font);
        font-size: 14px;
        font-weight: 400;
    }
    
    button
    {
        border: none;
        color: #000;
        cursor:pointer;
        font-family: sans-serif;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: .5px;
        text-transform: uppercase;
        outline: none;
        display: block;
        margin-top: 10px;
        height: 40px;
        width: 195px;
        border-radius: 0px;
    }
    
    button.login-only.login {
        background: #77AF03;
        cursor: pointer;
        display: block;
        grid-area: 4 / 1 / 6 / 2;
    }
    
    button.login-only.login:hover {
        background: #467500;
        border: 2px solid #FFF;
        color: #000;
        transition: 0.3s;
    }
    
    button.login-only.register {
        background: #FFF;
        color: #000;
        margin-left: 205px;
        cursor: pointer;
        display: block;
        grid-area: 4 / 1 / 6 / 2;
    }
    
    button.login-only.register:hover {
        background: #FFF;
        border: 2px solid #65A602;
        color: #000;
        transition: 0.3s;
    }
    
    button.login-only.forgot {
        background: none;
        color: #fff;
        width: 50%;
        text-align: left;
        font-weight: 400;
        line-height: 20px;
        cursor: pointer;
        font-size: 12px;
        grid-area: 5 / 1 / 8 / 2;
        margin-top: 34px;
        height: 20px;
    }
    
    button.login-only.forgot:hover {
        color: #ccc;
        font-weight: 400;
        transition: 0.3s;
    }
    
    button.register-only.register {
        background:#65A602 ;
        grid-area: 5 / 1 / 7 / 2;
    }
    
    button.register-only.register:hover {
        background: #467500;
        border: 2px solid #FFFFFF;
        transition: 0.3s;
    }
    
    button.register-only.cancel {
        background: #FFF;
        margin-left: 205px;
        grid-area: 5 / 1 / 7 / 2;
    }
    
    button.register-only.cancel:hover {
        background: #FFF;
        border: 2px solid #65A602 ;
        transition: 0.3s;
    }

button.forgot::after {
    content: "First time users will need to Register to access the online portal";
    color: #fff;
    display: block;
    font-size: 12px;
    width: 385px;
    text-align: center;
    text-transform: math-auto;
    margin-top: 13px;
    cursor:auto;
}
/* --------------------------------------   FORM START  ----------------- */