*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}
header{
    background-color: #FFFFFF;
    border-bottom: 1px solid #6666;
    display: flex;
    justify-content: center;
}
.logo{
    padding: 10px;

}
.logo img{
    width: 100%;
    height: auto;
}
.header_text{
    padding: 10px 10px 10px 10px;
    
}
.header_text h1{
    color: #333333;
    font-weight: normal;
    padding: 8px;
    font-size: 35px;
}
.header_text p{
    padding: 0px 5px 0px 10px;
    color: #333;
    font-size: 19px;

}
/*form Header Section*/
.form_header{
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #6666;
}
.form_header h1{
    color: #333;
    font-weight: normal;
}

/*form start*/

.main_form_area{
    display: flex;
    justify-content: center;
}
.form_section{
    width: 58%;
    height: auto;
    border: 1px solid inherit;
    padding: 20px;


}
.note_section{
    width: 30%;
    border: 1px solid inherit;
    height: auto;
    margin-top: 40px;
}
.form_head {
    padding: 10px 0px 10px 0px;
    border-bottom: 1px solid #6666;

}

.form_head h1{
    font-size: 20px;
    color: #333;
    font-weight: normal;
    

}
.form_name{
    display: flex;
    justify-content: space-between;
}


.box_line_one{
    display: flex;
    justify-content: center;
}
.box_line_one div{
    width: 40%;
    margin: 0px 10px 0px 10px;
}
.box_part_one{
    width: 100%;
    padding: 5px;
    justify-content: left;
}

.box_part_one input{
    width: 100%;
    height: 30px;
    padding: 5px;
    margin: 10px 0px 0px 0px;

}
.box_part_one label{
    
    padding: 10px 5px 10px 0px;
    font-weight: bold;
    font-size: 15px;
    color: #222;

}
.country_dropdown{
    width: 100%;
    height: 30px;
    padding: 5px;
    margin: 5px 0px 5px 0px;
    background-color: #fff;
    border: 0.5px solid #666;
}

.box_part_one button{ 
    width: 90px;
    padding: 12px 17px;
    height: 42px;
    background-color: #337AB7 ; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}

.box_part_one button:hover{
    background-color: #1e4e79;
}





/*Footer*/
footer{
    margin-top: 5px;
    text-align: center;
}
footer p{
    font-size: 12px;
    color: #666;
    padding: 20px;
}
footer p a{
    text-decoration: none;
}


/* list details table */

#customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#customers td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #103271;
    color: white;
}

.pdf_link:hover{
    color: #FF0000 !important;
}