@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');

*{
        box-sizing: border-box;
}
body{
        font-family: 'Press Start 2P', sans-serif;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #3498db;
        min-height: 100vh;
}
h1{
        color:black;
}
.container{
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 5px 5px rgba(0,0,0,2);
        width: 450px;
}
.container h2{
        font-size: 25px;
        text-align: center;
}
.submit{
    position: absolute;
    margin-left: 75px;
    


}
form{
        margin: 3rem;
}
.rating {
    
    font-weight: bold;
    border-radius: 3px;
    color: white;
    display: inline-block;
    padding: 5px;
    text-transform: uppercase;
  }
  .weakPassword { background-color: #EF1111; margin-left:130px;}

  .moderatePassword { background-color: #FFC700; margin-left:100px; }
  
  .strongPassword { background-color: #22BA3E; margin-left:120px; }

.form-control{
        font-size: 1rem;
        margin: 1rem;
}

.form-control label{
        display: block;
        margin-bottom: 0.5rem;
        
}

.form-control input,select{
        font-size: 1rem;
        border: 5px solid black;
        width: 100%;
        padding: 0.5rem;
        
}
.form-control input:focus{
        outline: 0;
        border-color: rgba(67, 148, 42, 0.452);
}


form button{
        width: 100%;
        background-color: #3498db;
        border-radius: 0.4rem;
        border: 2px solid;
        font-size: 1rem;
        display: block;
        width: 100%;
        color: white;
        margin-top: 2rem;
        cursor: pointer;
        padding: 1rem;
        font-family: 'Press Start 2P', sans-serif;
}
::placeholder,select{
    color:#3498db;
    font-family: 'Press Start 2P', sans-serif;
    font-weight: lighter;
    font-size: 12px;
}
* {
        box-sizing: border-box;
      }
      
      body {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      .wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        position:absolute;
        margin-bottom: -300px;
      }
      .adminh1{
              position: absolute;
              margin-bottom: 300px;
      }
      
      .cta {
          display: flex;
          padding: 10px 45px;
          text-decoration: none;
          font-family: 'Press Start 2P', sans-serif;
          font-size: 40px;
          color: white;
          background: #6225E6;
          transition: 1s;
          box-shadow: 6px 6px 0 black;
          transform: skewX(-15deg);
      }
      
      .cta:focus {
         outline: none; 
      }
      
      .cta:hover {
          transition: 0.5s;
          box-shadow: 10px 10px 0 #FBC638;
      }
      
      .cta span:nth-child(2) {
          transition: 0.5s;
          margin-right: 0px;
      }
      
      .cta:hover  span:nth-child(2) {
          transition: 0.5s;
          margin-right: 45px;
      }
      
        span {
          transform: skewX(15deg) 
        }
      
        span:nth-child(2) {
          width: 20px;
          margin-left: 30px;
          position: relative;
          top: 12%;
        }
      
      path.one {
          transition: 0.4s;
          transform: translateX(-60%);
      }
      
      path.two {
          transition: 0.5s;
          transform: translateX(-30%);
      }
      
      .cta:hover path.three {
          animation: color_anim 1s infinite 0.2s;
      }
      
      .cta:hover path.one {
          transform: translateX(0%);
          animation: color_anim 1s infinite 0.6s;
      }
      
      .cta:hover path.two {
          transform: translateX(0%);
          animation: color_anim 1s infinite 0.4s;
      }
      
      /* SVG animations */
      
      @keyframes color_anim {
          0% {
              fill: white;
          }
          50% {
              fill: #FBC638;
          }
          100% {
              fill: white;
          }
      }
      a{
              font-size: 10px;;
      }