.none{
    display: none;
}
.enq_form{
    height: 250px;
    width: 50%;
    margin: 12px auto;
    /* line-height: 80px; */
    /* verticalling center */
    align-items: center;
    padding: 80px;
    border: 2px solid rgb(75 75 254 / 32%);
    box-shadow: 0 0 10px rgb(26 95 122 / 26%);
    border-radius: 8px;
}

#body_container label{
   text-align: center;
   font-weight: bold;
   font-size: 36px;
}

#body_container input{
    width: 80%;
    padding: 10px;
    border-bottom: 2px solid rgb(177, 5, 5);
    border-radius: 5px;
    background-color: transparent;
}
/*  */
#body_container input[type="text"]{
    border: none;
    margin-top: 24px;
    border-bottom: 2px solid #1a5f7a;
    font-size: 24px;
}

#body_container input[type="text"]:focus{
    outline: none;
    font-size: 24px;
}

.next-btn{
    cursor: pointer;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 28px;
    text-align: end;
    text-decoration: underline;
    margin-bottom: 30px;
}

.back-btn{
    cursor: pointer;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 28px;
    text-align: start;
    text-decoration: underline;
    margin-bottom: 30px;
}

.back-btn .material-symbols-outlined{
    transform: rotate(180deg);
}

.button-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    width: 530px;
}

.submit-btn{
    cursor: pointer;
    background-color: #1a5f7a;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.submit-btn:hover{
    background-color: rgb(220, 20, 20);
}

.mt-3{
    margin-top: 3px;
}