html, body {
    padding: 0px;
    margin: 0px;
    font-family: helvetica-w01-bold, helvetica-w02-bold, helvetica-lt-w10-bold, sans-serif;
}

nav {
    height: 80px;
}

img {
    height: 75px;
    margin-top: 20px;
    margin-left: 20px;
}

.name {
    font-size: 30px;
    left: 230px;
    position: absolute;
    top: 43px;
}
.back{
    float: right;
    position: absolute;
    top: 41px;
    right: 30px;
    text-decoration: none;
    padding: 10px 30px;
    font-size: 20px;
    color: black;
}
.back:hover{
    background-color: rgba(237,233,225,0.6);
}
main {
    width: 90%;
    text-align: center;
    padding: 20px;
}
table{
    margin: 0 auto;
    width: 553px;
}
input, select{
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0, 0.2);
    padding: 0 12px;
    margin-bottom: 32px;
    background-color: transparent;
}
select{
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    -webkit-border-radius: 0;  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -moz-border-radius: 0;  /* Firefox 1-3.6 */
    border-radius: 0;  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
}
.left-input{
    margin-right: 20px;
    width: 253px;
}
.right-input{
    margin-left: 20px;
    width: 253px;
}
.button{
    cursor: pointer;
    background-color: rgba(227,208,168,1);
    border: 0;
    color: white;
    font-size: 16px;
    font-weight: 600;
}
.button:hover{
    background-color: rgb(192, 173, 133);
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    font-family: "FontAwesome";
    content: '\f107';
    font-size: 28px;
    position: absolute;
    top: 12px;
    right: 20px;
    color: rgba(227,208,168,1);
    pointer-events: none;
}

select::-ms-expand {
    display: none;
}

@media (max-width: 900px) {
    .name{
        display:none;
    }
}
@media (max-width: 600px) {
    table{
        width: 300px;
    }
    .left-input{
        width: 140px;
        margin-right: 10px;
    }
    .right-input{
        width: 140px;
        margin-left: 10px;
    }
    main {
        width: 95%;
    }
}