.fieldname{
    margin: 6px 0px 0px 2px;
    font-size: 11px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
}
input[type="text"]{
    width: calc( 100% - 24px);
    padding: 10px 10px;
    margin: 0px 0px 5px 0px;
    font-size: 18px;
    font-family: 'Roboto',Sans-Serif;
    font-weight: 400;
    color: #000000; 
    border: 2px solid transparent; 
    border-radius: 6px;
    background-color : #ffffff; 
    outline: none;
    -webkit-appearance: none;
}
input[type="text"]:focus {
    border: 2px solid #5573DD;
    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    text-align: center;
    -moz-appearance: textfield;
}
.custom-select {
    width: calc( 100% - 4px);
    height: 42px;
    margin: 5px 0px 5px 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333; 
    background-color: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 8px 5px;
    outline: none;
    cursor: pointer;
    
}
.custom-select:focus {
    border: 2px solid #5573DD;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}

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

