*{
  margin: 0;
  padding: 0;  
}
body{
  min-height: 100vh;
  background-image: url("bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  background-position: center center;
  color: #a2a5b3;
  text-align: center;
  align-content: center;
}
.logo{
    margin-top: 40px;  

}
.hero{
    margin-top: 25px;
    text-align: center;
}

h1{
    font-family: "DM Serif Text", serif;
    margin-top: 20px;
    color: #000;
    font-weight: 700;
    font-size: 3rem;
    font-style: normal;      
}

.form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 98vw;
    gap: 2rem;
}

.subform{
    text-align: center;
    padding: 60px 0;
    border-radius: 5px;
    width: 28%;
}

.icon{
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
  border: #000 solid 1px; 
}

h3{
    margin-bottom: 30px;
    margin-top: 10px;
    color: #000;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-size: 25px;
    font-style: normal;
}
p{
  margin-bottom: 10px;
  margin-top: 30px;
  color: #000;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-size: 17px;
  font-style: normal;
}
hr{
    margin-left: 40%;
    margin-top: 10px;
    width: 20%;
    margin-bottom: 50px;
    text-align: center;
    border: #dbd6d6 solid 1px;

}

.click{
    text-decoration: none;
    background-color: #c1272d;
    color: #fff;
    border: #000 solid 1px ;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: "Poppins", serif;
    font-weight: 300;
    font-size: 18px;    
}

.click:hover{
    background-color: #1b1464;
    color: #fff;
    font-weight: 400;
    transition: 1s;
}
 

.card{
  background: #ffffff;
    position: relative;
  }
  
  @property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
 /* 
  .card::after, .card::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding:2px;
    border-radius: 10px;
    animation: 3s spin linear infinite;
  }
  .card::before{
    filter: blur(1.5rem);
    opacity: 0.5;
  }
  @keyframes spin{
    from{
      --angle: 0deg;
    }
    to{
      --angle: 360deg;
    }
  }
*/

@media (max-width: 1100px) {
    .form {
      flex-direction: column;
      height: 100%;
    }
    .subform{
        width: 75%;
    }
  }
