@font-face {
    font-family: 'Poppins-SemiBold';
    src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url(../fonts/Poppins-Bold.ttf);
}

* {
    margin: 0px;
}

body{
    background-image: radial-gradient(#5474B6, #253350);
    background-attachment: fixed;
}

.main-box {
    display: grid;
    grid-template-columns: 45% 55%;
   
    /* height: 100vh; */
    
}

.form-box {
    padding: 30px;
}

.form-div {
    background-color: #ffff;
    padding:20px  40px;
    border-radius: 15px;
}

.titile-for-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titile-for-form h1 {
    font-family: "Poppins-SemiBold";
    text-align: center;
    color: #253350;
}

.titile-for-form p {
    font-family: "Poppins-Regular";
    font-size: 12px;
    text-align: center;
    width: 70%;
    color: #D1000B;
}

.inputs{
    margin-top: 30px;
}

.two-inputs {
    display: grid;
    grid-template-columns: 47% 47%;
    gap: 35px;

}

.input-box{
    background-color: #F0F5F9;
    display: flex;
    padding: 3px 4px;
    padding-bottom: 4px;
    border-radius: 30px;
    gap: 10px;
}
.icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 42px;
    border-radius: 100%;
    background-color: #D1000B;
}
.big-space{
    width: 45px !important;
    height: 42px !important;
}
.icon img{
    width: 50%;
}

.icon i{
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.input-box input[type="text"]{
   background: transparent;
   border: none;
   width: 100%;
   border-radius: 20px;
   text-transform: uppercase;
}
.input-box input[type="text"]:focus{
    outline: none;
}

.input-box input[type="text"]::placeholder{
    font-family: "Poppins-Regular";
    color: #253350;
    text-transform: capitalize;
}

.inputspace-space{
    margin-top: 30px;
}

.inputspace-space .input-box button{
    width: 100%;
    height: 42px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-family: "Poppins-Regular";
    color: #43D77A;
    background-color: transparent;
    border: 1px solid #43D77A;
}

.btn-sub {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn-sub button{
    padding: 10px 40px;
    border-radius: 20px;
    background-color: #D1000B;
    border: none;
    font-family: "Poppins-SemiBold";
    color: #fff;
}

.logo-icon{
    width: 200px;
    margin-top: 30px;
}

.logo-icon img{
    width: 100%;
}

.titile-head{
    margin-top: 30px;
}

.titile-head h3{
    font-family: "Poppins-SemiBold";
    font-size: 30px;
    width: 75%;
    color: #fff;
}

.titile-head h3 span{
    color: #D1000B;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
     /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 20%;
    border-radius: 20px;
    
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

.img-down{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.img-down img{
  width: 70%;
} 
.alingcenter-btn{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.btn-download img{
    width: 20px;
    margin-left: 10px;
}

.btn-download{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    background-color: #43D77A;
    font-family: "Poppins-Regular";
    color: #fff;
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
.main-box{
    display: grid;
    grid-template-columns: 100%;
  }
  .titile-head{
    display: none;
  }
  .two-inputs{
    display: grid;
    grid-template-columns:100%;
    gap: 30px;
  }
  .form-div{
    padding: 20px !important;
  }
  .big-space{
    height: 40px !important;
    width: 51px !important;
  }
  .mobile-view{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    width: 50%;
  }
}


/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
    /* CSS */
    
 
    .main-box{
        display: grid;
        grid-template-columns: 100% !important;
       
    }
    .two-inputs{
        display: grid;
        grid-template-columns:100%;
        gap: 30px;
      }
      .modal-content {
        width: 50%;
      }
  }