p.fieldname {
    font-size: 16px;
    font-weight: 500;
    margin: 16px 0px 2px 0px;
    color: #000000;
}

#submitbutton{
    border: 0px;
    border-style: solid;
    border-color: #B39964;
    text-align: center;
    text-decoration: none;
    font-size: 12pt;
    background-color: #000000;
    color: #FFFFFF;

    padding-left: 18px;
    padding-right: 18px;
    padding-top: 14px;
    padding-bottom: 14px;
    
    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;

}


#submitbutton:hover{
    border: 0px;
    border-style: solid;
    border-color: #B39964;
    text-align: center;
    text-decoration: none;
    font-size: 12pt;
    background-color: #333333;
    color: #FFFFFF;
                    
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 14px;
    padding-bottom: 14px;

    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;

}
.button-login {
    background-color: #333333;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Roboto',Sans-Serif;
    outline: none;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 4px 6px; 
    cursor: pointer;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}
.button-login:hover {
    background-color: #707070;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}
input[type="text"]{
    width: calc( 100% - 24px);
    padding: 10px 12px;
    font-size: 18px;
    font-family: 'Roboto',Sans-Serif;
    font-weight: 400;
    color: #000000; 
    border: 0px; 
    background-color : #F8F8F1; 
    outline: none;
    -webkit-appearance: none;

}
input[type="text"]:focus {
    background-color: #ffffff;
    outline: none;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}

.custom-select {
    height: 42px;
    font-size: 18px;
    color: #333333; 
    background-color: #F7F7F7;
    border: 0px;
    border-bottom: 1px solid #000000;
    padding: 8px 8px;
    font-family: 'Roboto', sans-serif;
    outline: none;
    cursor: pointer;
    width: calc( 100% - 24px);
}
.custom-select:focus {
    background-color: #F0F0F0;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}

::-webkit-input-placeholder { /* Chrome */
    color: #999999;
    font-size: 16px;
    font-weight: 400;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #999999;
  font-size: 12px;
  font-weight: 400;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  opacity: 1;
}