.a
{
    /* background: black; */
    position: relative;
}


.loader  {
    animation: rotate 1s infinite;  
    height: 50px;
    width: 50px;
    position: absolute;
    top: 40%;
    left: 50%;
  }
  
  .loader:before,
  .loader:after {   
    border-radius: 50%;
    content: '';
    display: block;
    height: 20px;  
    width: 20px;
  }
  .loader:before {
    animation: ball1 1s infinite;  
    background-color: #cb2025;
    box-shadow: 30px 0 0 #f8b334;
    margin-bottom: 10px;
  }
  .loader:after {
    animation: ball2 1s infinite; 
    background-color: #00a096;
    box-shadow: 30px 0 0 #97bf0d;
  }
  
  @keyframes rotate {
    0% { 
      -webkit-transform: rotate(0deg) scale(0.8); 
      -moz-transform: rotate(0deg) scale(0.8);
    }
    50% { 
      -webkit-transform: rotate(360deg) scale(1.2); 
      -moz-transform: rotate(360deg) scale(1.2);
    }
    100% { 
      -webkit-transform: rotate(720deg) scale(0.8); 
      -moz-transform: rotate(720deg) scale(0.8);
    }
  }
  
  @keyframes ball1 {
    0% {
      box-shadow: 30px 0 0 #f8b334;
    }
    50% {
      box-shadow: 0 0 0 #f8b334;
      margin-bottom: 0;
      -webkit-transform: translate(15px,15px);
      -moz-transform: translate(15px, 15px);
    }
    100% {
      box-shadow: 30px 0 0 #f8b334;
      margin-bottom: 10px;
    }
  }
  
  @keyframes ball2 {
    0% {
      box-shadow: 30px 0 0 #97bf0d;
    }
    50% {
      box-shadow: 0 0 0 #97bf0d;
      margin-top: -20px;
      -webkit-transform: translate(15px,15px);
      -moz-transform: translate(15px, 15px);
    }
    100% {
      box-shadow: 30px 0 0 #97bf0d;
      margin-top: 0;
    }
  }

.b
{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    width: 360px;
    height: 510px;
    background-color: #181717b2;
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
}
.avatar
{
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 127px;

}
h1
{
    margin: 0;
    padding: 0 0 2px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 1px;
    text-align: center;
    font-size: 22px;
    border: none;
}
.b p
{
    margin: 0;
    padding: 0;
    font-weight: bold;
}
.b input
{
    width: 100%;
    margin-bottom: 20px;
    
}
.b input[type="gmail"], input[type="password"], input[type="text"]
{
    border: none;
    border-bottom: 1px solid white;
    background: transparent;
    outline: none;
    height: 40px;
    color: white;
    font-size: 16px;
}
.b input[type="gmail"]:hover, input[type="password"]:hover, input[type="text"]:hover
{
    border-bottom: 1px solid rgb(245, 212, 151);
    
}
.b input[type="submit"]
{
    border: none;
    outline: none;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    height: 40px;
    background:white;
    color: black;
    font-size: 18px;
    border-radius: 20px;
}
.b input[type="submit"]:hover
{
    cursor: pointer;
    background:rgb(235, 182, 112);
    color: white;
    -webkit-box-shadow: 1px 2px 82px -3px rgba(224,174,49,1);
    -moz-box-shadow: 1px 2px 82px -3px rgba(224,174,49,1);
    box-shadow: 1px 2px 82px -3px rgba(224,174,49,1);
}
.b a{
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: darkgray;
}
.b a:hover
{
    color: rgb(245, 212, 151);
}
.Icons
{
    text-align: center;
    letter-spacing: 9px;
    margin-top: 15px;
    font-size: 25px;
    
}
.fab:hover
{
    color: rgb(245, 212, 151);
    -webkit-box-shadow: 1px 2px 82px -3px rgba(224,174,49,1);
    -moz-box-shadow: 1px 2px 82px -3px rgba(224,174,49,1);
    box-shadow: 1px 2px 82px -3px rgba(224,174,49,1);
}