/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Almarai:wght@300;400;700;800&family=Gulzar&family=Noto+Nastaliq+Urdu:wght@400..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;}
    body {
        margin: 0;
        height: 100vh;
        background: #0a0a0a;
        overflow: hidden;
        position: relative;
      }
      .blob {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle at center, #00f0ff, #ffffff);
        filter: blur(160px);
        opacity: 0.7;
        border-radius: 50%;
        mix-blend-mode: screen;
        animation: moveBlob 30s ease-in-out infinite;
        z-index: 0;
      }
      .blob:nth-child(1) {
        top: 0;
        left: 0;
        animation-delay: 0s;
      }
      
      .blob:nth-child(2) {
        top: 50%;
        left: 70%;
        background: radial-gradient(circle at center, #00d4ff, #ffffff);
        animation-delay: 5s;
      }
      
      .blob:nth-child(3) {
        top: 20%;
        left: 30%;
        background: radial-gradient(circle at center, #00e0ff, #ffffff);
        animation-delay: 10s;
      }
      
      @keyframes moveBlob {
        0% {
          transform: translate(0, 0) scale(1);
        }
        25% {
          transform: translate(200px, -100px) scale(1.2);
        }
        50% {
          transform: translate(-100px, 150px) scale(0.9);
        }
        75% {
          transform: translate(-200px, -150px) scale(1.3);
        }
        100% {
          transform: translate(0, 0) scale(1);
        }
      }
          

.container{
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 80;
    border-radius: 6px;
    padding: 30px;
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.container header{
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #333;
}
.container header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 27px;
    border-radius: 8px;
}
.container form{
    position: relative;
    margin-top: 16px;
    min-height: 80vh;
    background-color: #fff;
    overflow: hidden;
    
}
.container form .form{
    position: absolute;
    background-color: #fff;
    transition: 0.3s ease;
}
.container form .form.second{
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}
form.secActive .form.second{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
form.secActive .form.first{
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
}
.container form .title{
    display: block;
    font-size: 25px;
    font-weight: 500;
    margin:0 0 0px;
    color: #333;
}
.container form .fields{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
form .fields .input-field{
    display: flex;
    width: calc(100% / 3 - 15px);
    flex-direction: column;
    margin: 4px 0;
}
.input-field label{
    font-size: 16px;
    font-weight: 500;
    color: #2e2e2e;
}
.input-field input, select{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid black;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
    background-color: #eaebec;
}
.input-field select,option{
    font-weight: 600;
    font-family: "Alexandria", serif;
}

.input-field input :focus,
.input-field select:focus{
    box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.input-field select,
.input-field input[type="date"]{
    color: #707070;
}
.input-field input[type="date"]:valid{
    color: #333;
}
.container form button, .backBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    background-color: #4CC9FE;
    transition: all 0.3s linear;
    cursor: pointer;
    border: solid 1px black;
}
.container form .btnText{
    font-size: 14px;
    font-weight: 400;
}
form button:hover{
    background-color: #265df2;
}
form button i,
form .backBtn i{
    margin: 0 6px;
}
form .backBtn i{
    transform: rotate(180deg);
}
form .buttons{
    display: flex;
    align-items: center;
}
form .buttons button , .backBtn{
    margin-right: 14px;
}

@media (max-width: 750px) {
    .container form{
        overflow-y: scroll;
    }
    .container form::-webkit-scrollbar{
       display: none;
    }
    form .fields .input-field{
        width: calc(100% / 2 - 15px);
    }
}

@media (max-width: 550px) {
    form .fields .input-field{
        width: 100%;
    }
}
.date::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.container form{
    overflow-y: scroll;
}
.container form::-webkit-scrollbar{
   display: none;
}
form .fields .input-field{
    width: calc(100% / 2 - 15px);
}