*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.background{
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.form-cal h4{
    font-size: 30px;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px;
    padding-bottom: 8px;
}
.form-cal p{
    font-size: 18px;
    color: #151515;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 18px;
}

.input_grp input{
    width: 40%;
    height: 52px;
    background-color: transparent;
    border: 2px solid #000;
    outline: none;
    margin-bottom: 15px;
    font-size: 17px;
    color: #1d1d1d;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding-left: 12px;
}
.input_grp input::placeholder{
    font-size: 17px;
    color: #1d1d1d;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.total{
    font-size: 22px !important;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 600 !important;
    margin-bottom: 0px;
}

form button{
    width: 25%;
    height: 52px;
    background-color: #000;
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    border: 2px solid #000;
    outline: none;
    cursor: pointer;
    transition: all 0.5s; 
}
form button:hover{
    color: #000;
    background-color: #fff;
}

span {
    font-size: 16px;
    color: #1d1d1d;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 15px;
    display: block;
}

