.input-box {
    border: none;
    border-bottom: 1.5px solid rgba(168, 154, 154, 0.322);
    border-radius: 0px;
    transition: none;
    width: 100%;
    padding-bottom: 2px;
  }
  .input-box:focus {
    outline: none;
    border-bottom: 1.5px solid red;
    /* zoom: 1.1; */
    transform: scaleY(1.05);
  }
  .input-box {
    transition: border 0.5s ease-out;
    /* transition: transform 0.5s ease-out; */
  }
  
  
  .btn {
      width: 150px;
      height: 50px;
      border: none;
      outline: none;
      color: #fff;
      background: green;
      background-image: -webkit-linear-gradient(top, #5282d4, #28667d);
      background-image: -moz-linear-gradient(top, #5282d4, #28667d);
      background-image: -ms-linear-gradient(top, #5282d4, #28667d);
      background-image: -o-linear-gradient(top, #5282d4, #28667d);
      background-image: linear-gradient(to bottom, #5282d4, #28667d);
      cursor: pointer;
      position: relative;
      z-index: 0;
      border-radius: 10px;
      margin-top: 2rem;
  }
  
  .btn:before {
      content: '';
      background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
      position: absolute;
      top: -2px;
      left:-2px;
      background-size: 400%;
      z-index: -1;
      filter: blur(5px);
      width: calc(100% + 4px);
      height: calc(100% + 4px);
      animation: glowing 20s linear infinite;
      opacity: 0;
      transition: opacity .3s ease-in-out;
      border-radius: 10px;
  }
  
  .btn:active {
      color: #000
  }
  
  .btn:active:after {
      background: transparent;
  }
  
  .btn:hover:before {
      opacity: 1;
  }
  
  .btn:after {
      z-index: -1;
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: #5282d4;
      background-image: -webkit-linear-gradient(top, #5282d4, #28667d);
      background-image: -moz-linear-gradient(top, #5282d4, #28667d);
      background-image: -ms-linear-gradient(top, #5282d4, #28667d);
      background-image: -o-linear-gradient(top, #5282d4, #28667d);
      background-image: linear-gradient(to bottom, #5282d4, #28667d);
      left: 0;
      top: 0;
      border-radius: 10px;
  }
  
  @keyframes glowing {
      0% { background-position: 0 0; }
      50% { background-position: 400% 0; }
      100% { background-position: 0 0; }
  }
  
  .space {
    margin-top: 10px;
  }
  footer {
    position: relative;
    width: 100%;
    height: 9vh;
    background-color: lightgreen;
    color: white;
    text-align: center;
    margin-top: 110px;
    padding-top: 20px;
  }
  /*  */
  .icons ul {
    display: flex;
    margin-top: 190px !important;
  }
  
  .icons ul li {
    list-style: none;
  }
  
  .icons ul li a {
    width: 40px;
    height: 40px;
    background-color: #fff;
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    margin: 0 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
    margin-top: 15px;
  }
  
  .icons ul li a .icon {
    position: relative;
    color: #262626;
    transition: 0.5s;
    z-index: 3;
  }
  
  .icons ul li a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
  }
  
  .icons ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: blue;
    transition: 0.5s;
    z-index: 2;
  }
  
  .icons ul li a:hover:before {
    top: 0;
  }
  
  .icons ul li:nth-child(2) a:before {
    background: black;
  }
  /* CopyRights */
  .icons ul p {
    position: absolute;
    left: 40%;
    top: 20px;
  }
  
  .logo-img{
    margin-left: 40px;
    height: 45px;
    width: 80px;
  }
  
  @media only screen and (max-width: 500px) {
    .icons ul p {
      position: absolute;
      left: 50%;
      top: 20px;
    }
  }
  