@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700');

body {
    width: 100vw;
    height: 100vh;
    border: 0;
    padding: 0;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 1px;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }

.container {
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 34, 76, 0.9), rgba(7, 0, 44, 0.9));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid; 
    grid-template-columns: 1fr 100vw 1fr; 
    grid-template-rows: 1fr auto 1fr; 
    gap: 0px 0px; 
    grid-template-areas: 
      ". . ."
      ". login ."
      ". . .";
    
  }

  .login {
    padding: 60px 30px;
    grid-area: login;
    transition: 0.5s;
    text-align: center;
}

.login h1 {
    margin: 0 0 20px;
    color: white;
    font-size: 30px;
    text-transform: uppercase;
  }
.login input {
    display: block;
    width: 100%;
    padding: 1em 1em;
    box-sizing: border-box;
    margin-bottom: 20px;
    border-radius: 25px;
    outline: none;
    font-size: 1em;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    font-family: 'Roboto Condensed', sans-serif;
}

.login input[type="submit"] {
    color: white;
    background-color: #0072ff;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }

  .login input::placeholder {
    color: #aaa;
  }

.login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.login input[type="submit"]:hover {
    background-color: #005aca;
  }
  
  .login a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
  }

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

  
  @media only screen and (min-width: 600px) {
    /* For tablets: */
    .container {grid-template-columns: 1fr 70vw 1fr;}

  }
  @media only screen and (min-width: 768px) {
    /* For desktop: */
    .container {grid-template-columns: 1fr 340px 1fr;}

  }




  @keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}
