*{
    margin: 0;
    padding:0;
}
nav{
    display: flex;
    width: 100%;
    align-items: center;
    padding: 30px;
    z-index: 11;
    position: fixed;
    top: 0;
    color: black;
    background-color: white;
    gap: 60%;
    box-shadow: 0px 0px 2px 0px black; 
} 
nav a{
    text-decoration: none;
    color: inherit;
}
nav ul{
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;  
}
nav ul li{
    position: relative;
    font-size: medium;
    list-style: none;
    cursor: pointer;
}
nav ul li:hover{
    color: #c9a961;
}
nav ul li::after{
    content: '';
    height: 1.5px;
    width: 0%;
    left: 0;
    bottom: -5px;
    position: absolute;
    background-color: #c9a961;
    transition: 0.3s ease;
}
nav ul li:hover::after{
    width: 100%;
}
form{
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 50px;
    gap: 20px;
}
input{
    width: 200px;
    height: 25px;
    padding-left: 10px;

}
::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
select{
    width: 200px;
    height: 35px;
}
button{
    text-align: center;
    width: 100px;
    height: 30px;
    cursor: pointer;
}