@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: bahnschrift;
}

body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgb(228, 225, 225);
}

.container{
    position: relative;
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

}
.container header{
    font-size: 1.5rem;
    color: #333;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.container header:before{
content: '';
position: absolute;
bottom: 0;
height: 3px;
width: 25px;

background: #54B435;
}

.container .form{
    margin-top: 30px;
}
.form .input-box{
    width: 100%;
    margin-top: 20px;
}

.form h3{
    color: #333;
    font-weight: 600;
}



.input-box label{
    color: black;

}
.form .input-box input{
    position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 1rem;
    color: #707070;
    margin-top: 8px;

}

::placeholder {
    color: #c5c5c5;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #c5c5c5;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
   color: #c5c5c5;
  }

.form .input-box input[type=checkbox]{
    position: relative;
    height: 15px;
    width: 15px;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 1rem;
    color: #707070;
    margin-top: 8px;

}

.input-box input:focus{
    border: 1px solid #54B435;
    
}

.form .input-box select{
    position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 1rem;
    color: #707070;
    margin-top: 8px;

}
.input-box select:focus{
    border: 1px solid #54B435;
    
}
 

input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.form .column{
    display: flex;
    column-gap: 15px;
}

.form button{
    height: 55px;
    width: 100%;
    background: #54B435;
    color: #fff;
    font-size: 1rem;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 35px;
    font-weight: 400;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.form button:hover{
    background: #57d12e;
}

h1{
    margin-top: -500px;
    font-size:45px;
}
.pay{
    text-align: center;
    justify-content: center;
    margin-top: -150px;
    margin-left: -250px;
}
.pay-btn{
   
    background: rgb(130, 106, 251);
    color: #fff;
    font-size: 1rem;
    border: none;

    cursor: pointer;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.2s ease; 
    padding: 10px;
}
.pay-btn:hover{
    background: rgb(88, 56, 250);
}

/* Responsive */
@media screen and (max-width: 550px) {
    .form .column{
        flex-wrap: wrap;
    }
    
}