*{
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;

}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    height: 100vh;
    background-image: linear-gradient( #f2f8f8);
}
.Container{
    max-width: 650px;
    padding: 28px;
    margin: 0 28px;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    box-shadow: 0 15px 20px rgba(126, 126, 126, 0.6);
}
header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
header img {
    width: 180px;
    height: 95px;
    margin-top: 50px;
  }
h2{
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: #848686;
    border-bottom: 1px solid rgb(255,174,0);
}
h1{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #848686;

}
h3{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    font-style: italic;
    color: #848686;

}
.content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.input-box{
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    padding-bottom: 15px;
}
p{
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    padding-bottom: 15px;
}
.input-box:nth-child(2n){
    justify-content: end;
}
.input-box select{
    height: 30px;
    width: 95%;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}
.input-box option{
    height: 30px;
    width: 95%;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}
.input-box label{
    width: 95%;
    color: #848686;
    font-weight: bold;
}
.input-box input{
    height: 30px;
    width: 95%;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}
.input-box input:is(:focus,:valid){
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.button-container{
    margin: 15px 0;
}
.button-container button{
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    display: block;
    font-size: 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    background-image: linear-gradient(to right, #ffae00, #ffae00);
    cursor: pointer;
    transition: 0.3s;
}
.button-container button:hover{
    background-image: linear-gradient(to right, #ffae00, #ffae00);
}
@media screen and (max-width:600px){

}