p.fieldname {
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0px 6px 0px;
    color: #ffffff;
}
.appearance (@value: none) {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
.button1 {
    background-color: rgb(153,2,33);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    outline: none;
    border: none;
    border-radius: 32px;
    
    padding: 16px 20px; 
    cursor: pointer;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}
.button1:hover {
    background-color: rgb(245,3,52);
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}
.button2 {
    background-color: #518432;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    border-radius: 38px;
    border: 4px solid #ffffff;;
    padding: 15px 20px; 
    cursor: pointer;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}
.button2:hover {
    background-color: #000000;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}


button.button-login {
    background-color: #000000;
    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.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 : #f7f7f7; 
    outline: none;
    -webkit-appearance: none;

}
input[type="text"]:focus {
    background-color: #f0f0f0;
    -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;
}

