  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family: "Poppins", sans-serif;
    background-image: linear-gradient(
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.4)), url(img2.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.container{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.header{
    background-color: transparent;
}
.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.navbar ul li a::after{
    content: '';
    width: 1.9rem;
    height: 1px;
    background-color: #ff7949;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: all .3s ease;
    
}
.navbar ul li a:hover::after{
    opacity: 1;
}


.logo{
    color: #FFFDFC;
    font-size: 25px;
    font-weight: 600;
    text-decoration: none;
}
.bxs-gas-pump{
    color: #ff7949;
}
.menu .navbar ul li{
    position: relative;
    float: left;
}
.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #FFFDFC;
    display: block;
    font-weight: 400;
    text-decoration: none;
}
.menu .navbar ul li a:hover{
    color: #ff7949;
}

.card-info{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box{
    background: #fff;
    padding: 50px;
    border-radius: 1rem;
    box-shadow: rgb(255, 0, 0) 0px 15px 10px -10px;
    width: 30rem;
    height: 20rem;
    
}
h1{
    margin: 10%;

}








.box p:first-child {
    margin: 0 0 30px;
    padding: 0;
    color: #ff0303;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  .box .user-box {
    position: relative;
  }
  
  .box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #020202;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #ff0303;
    outline: none;
    background: transparent;
  }
  
  .box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #ff0303;
    pointer-events: none;
    transition: .5s;
  }
  
  .box .user-box input:focus ~ label,
  .box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #ff0303;
    font-size: 12px;
  }
  
  .box form Button {
    position: relative;
    display: inline-block;
    background: transparent;
    padding: 10px 20px;
    font-weight: bold;
    color: #ff0303;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    overflow: hidden;
    transition: .5s;
    margin-top: 30px;
    letter-spacing: 3px
  }
  
  .box Button:hover {
    background: #ff0303;
    color: #272727;
    border-radius: 5px;
  }
  
  .box Button span {
    position: absolute;
    display: block;
  }
  
  .box Button span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0303);
    animation: btn-anim1 1.5s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
  
    50%,100% {
      left: 100%;
    }
  }
  
  .box Button span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ff0303);
    animation: btn-anim2 1.5s linear infinite;
    animation-delay: .375s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
  
    50%,100% {
      top: 100%;
    }
  }
  
  .box Button span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #ff0303);
    animation: btn-anim3 1.5s linear infinite;
    animation-delay: .75s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
  
    50%,100% {
      right: 100%;
    }
  }
  
  .box Button span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #ff0303);
    animation: btn-anim4 1.5s linear infinite;
    animation-delay: 1.125s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
  
    50%,100% {
      bottom: 100%;
    }
  }
  
  .box p:last-child {
    color: #d30101f2;
    font-size: 14px;
  }
  
  .box a .a2 {
    color: #d30101f2;
    text-decoration: none;
  }
  
  .box a .a2:hover {
    background: transparent;
    color: #ff0303;
    border-radius: 5px;
  }
