@import url("htt.ps://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; 
    font-family: "poppins" , sans-serif;
}

.wrapper {
    /* margin-left: 450px; */
    margin-top: 30px;
    max-width: 500px;
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255,255, .2);
    backdrop-filter: blur (30px);
    /* box-shadow: 0 0 10px rgba(0, 0, 0, .2); */
    color: black;
    border-radius: 10px;
    padding: 10px;
    
}
.wrapper h1 {
    font-size: 36px;
    text-align: center;
    color: red;
}

   
.wrapper p {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: red;
}

.wrapper h2 {
    text-align: center;
    font-size: 15px;
    margin-top: 10px;
}

.wrapper .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;

} 

.input-box input{
    width: 100%;
    height: 100%;
    background: lightgray;
    border: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: black;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: black;
}

.input-box i{
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translateY(0%);
    font-size: 20px;
}

.wrapper .btn {
    text-transform: uppercase;
    display: inline;
    border: 3px solid red;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* height: 45px; */
    background: white;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
    cursor: pointer;
    font-size: 16px;
    color: red;
    padding: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn:before{
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: red;
    z-index: -1;
    border-radius: 40px;
}

.btn:hover, .btn:focus{
    color: white;
}

.btn:hover::before, .btn:focus::before{
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.btn:active{
    transform: scale(0.9);
}


.popup{
    /* margin-top: 200px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    padding: 30px 20px;
    /* margin-left: 470px;  */
    border-radius: 20px;
    background-color: white;
}

.popup i{
    font-size: 100px;
    color: green;
}

.popup h3{
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: #333;
}

.popup h4{
    margin-top: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #808080;
    text-align: center;
}

.popup .button{
    font-size: 14px;
    padding: 6px 12px;
    margin: 0 10px; 
}

.popup .button{
    margin-top: 25px;
    margin-left: -10px;
    width: 150%;
    height: 45px;
    background: green;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: 600;
}



.loader-box{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: #0000008f;
}

.loader {
  width: 100px;
  height: 100px;
  border: 5px solid #f50000;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  animation: pulse 1s linear infinite;
}
.loader:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 5px solid #FFF;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: scaleUp 1s linear infinite;
}

@keyframes scaleUp {
  0% { transform: translate(-50%, -50%) scale(0) }
  60% , 100% { transform: translate(-50%, -50%)  scale(1)}
}
@keyframes pulse {
  0% , 60% , 100%{ transform:  scale(1) }
  80% { transform:  scale(1.2)}
}

.image-box{
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
    padding: 10px;
    align-items: center;
}

.image-box img{
    height: 100%;
    width: 100%;
    max-width: 500px;
}


.main{
display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    top: 0;
    position: fixed;
}