
body{
    font-family: "Inter", serif;
    
    color:#444;
}
p{
    line-height: 34px;
    font-weight: 300;
}
b, strong {
    font-weight: 600 !important;
}
.inter {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

:root {
    --red: #CA2628;
    --blue: #0B3D5C;
   }
.red{
   color: var(--red)
}
.blue{
    color: var(--blue)
 }
 .form-box form{
    z-index: 99;
    position: relative; margin-top: 20px
 }
 .form-box {
    background-image: linear-gradient(138deg, #ca2e2a, #8f201d);
    background-size: cover;
    background-position: center;
    padding: 30px;
    box-shadow: 10px 10px #e88280;
    border-radius: 5px;
    text-align: center;
    /* height: 300px; */
    position: relative; /* Make the .form-box relative so the ::after can be positioned absolutely */
   
  }
  
  .form-box::after {
    background-image: url(img/form-wave.png);
    position: absolute;
    content: "";
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 200px;
    background-size: contain;
    background-position: center;
    z-index: 1;
    background-repeat: no-repeat;
}
  

 .form-box h3{
    font-size: 22px;
    font-weight: 500;
 }
 .form-box p{
    font-size: 14px;
    line-height: 21px;
    margin-top: 5px;
    }

.input-icon{
    position: relative;
}
.input-icon:before{
    background-image: url(img/user.png);
    position: absolute;
    content: "";
    left: 10px;
    bottom: 0;
    width: 25px;
    height: 100%;
    background-size: auto;
    background-position: center;
    z-index: 1;
    background-repeat: no-repeat;
}
.input-icon input{
    padding-left: 41px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 41px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 15px 15px 0px 0px;
    color: var(--blue);
    font-size: 14px;
    width: 100%;
    margin: auto;
    transition: .3s;
}
.input-icon input:focus{
    outline: 0px;
}
.input-icon input:hover{
    background: #fffffff2;
}
.input-icon{
    width: 80%;
    margin: auto;
}
input::placeholder{
    color: var(--blue) !important;
    font-size: 14px;
}
.button-icon{
    position: relative;
}
.button-icon button::before{
    background-image: url(img/send-arrow.png);
    position: absolute;
    content: "";
    left: 13px;
    bottom: 0;
    width: 25px;
    height: 100%;
    background-size: auto;
    background-position: center;
    z-index: 1;
    background-repeat: no-repeat;
    transition: .4s;
}
.button-icon button{
    background: #113e5c;
    color: #fff;
    padding: 12px 24px 12px 47px;
    font-size: 15px;
    border-radius: 5px;
    position: relative;
    box-shadow: 3px 3px #ffffffa1;
    margin-top: 20px;
    transition: .3s;
}
.button-icon:hover button::before{
    width: 35px;
}
.button-icon button:hover{
    box-shadow:  0px 0px 7px 3px #ffffffa1
}
.top-shape{
    background-image: url('img/banner.webp');
    background-position: top left;
    background-repeat: no-repeat;
}

.bottom-shape{
    background-image: url('img/bottom-vector.svg');
    background-size: 80%;
    background-position: right bottom 40px;
    background-repeat: no-repeat;
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .input-icon {
        width: 90%;
        margin: auto;
    }
    .arrow-icon-bg::before {
        width: 25px;
        height: 25px;
        left: -40px;
        position: absolute;
        top: 10px;
    }
}


.box-shadow{
    background: #fff;
    padding: 15px 5px;
    box-shadow: 2px 4px 4px #c1c1c1;
    border-radius: 6px;
}

.arrow-icon-bg::before {
    content: "";
    display: inline-block; /* Ensures the pseudo-element takes up space */
    background-image: url("img/icon/arrow-icon.png");
    background-repeat: no-repeat;
    background-size: contain; /* Ensures the image fits properly */
    width: 30px;
    height: 30px; 
    left: -40px;
    position: absolute;
    top:5px;
}
