@import url('https://fonts.googleapis.com/css2?family=Anton&family=Libre+Franklin:ital,wght@1,900&display=swap');
body{
  background: url('../images/background.jpg')center center fixed;
  background-size: cover;
  color: #fff;
  text-shadow:0 0 2px rgb(119, 116, 116);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
 }
 .login-container{
   margin: 0 auto;  
   width:500px;
   background: rgba(0, 0, 0, 0.5);
   padding:30px;
   border: 3px solid #fff;
}
 
 .login-header{
     text-align: center;
     font-family: 'Libre Franklin', sans-serif;
     font-size: large;
 }
.login-header h1{
    font-size: 50px;
    font-weight: 800;
}
.login-header h3{
    margin-top: -10px;;
    text-transform: uppercase;
    color: #2b87ff;
    /* #ffdf2b */
    font-size: 38px; 
}
.login-header h3:after{
    content:'';
    display: block;
    height: 5px;
    background-color: rgb(188, 38, 38);
    width:30%;
    margin: 0 auto;
} 
.login-form{
  display:flex !important;
  align-items: center !important;
  justify-content: center !important;
} 
.login-input{
    margin-top:20px;
}
.login-input label{
    display:block;
    text-transform: uppercase;
    font-size:15px;
    font-weight: bold;
    color:#fff;
}
.login-input input{
    height: 25px;
    width:100%;
    border: 2px solid #d4033d;
    font-size: 15px;
    padding:5px;
    text-align:  center;
}
.login-button{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:40px;
  }
  
  button {
    min-width: 300px;
    min-height: 60px;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: #4FD1C5;
  background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(79,209,197,.64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    }
  
  button::before {
  content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #00FFCB;
    box-shadow: 0 0 60px rgba(0,255,203,.64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
  }
  
  .button:hover, .button:focus {
    color: #313133;
    transform: translateY(-6px);
  }
  
  button:hover::before, button:focus::before {
    opacity: 1;
  }
  
  button::after {
    content: '';
    width: 30px; 
    height: 30px;
    border-radius: 100%;
    border: 6px solid #00FFCB;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  button:hover::after, button:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 8px;
      height: 8px;
      opacity: 1;
    }
    100% {
      width: 150px;
      height: 150px;
      opacity: 0;
    }
  }
  .errorMessage{
    background:#fff;
    text-align: center;
    color: #d4033d;
    font-size: 10px;
    padding: 5px;
  }
  
   /* @media only screen and(min-width:600px) and (max-width: 850px) {
    body {
      background-image: url('../images/tab-background.jpg');
    }
     .login-container{
       width: 300px;
       height:650px;
       margin-top: 150px;
       } 
  }
  @media only screen and  (min-width:320px){
    body{
      font-size:5px;
    }
    .login-container{
      width:50%;
      text-align: center;
      margin-top: 10%;
    }
    .login-header h1{
      font-size:30px;
    }
    .login-header h3{
      font-size: 25px;
    }
    button{
      min-width: 150px;
    }
  } */
  