:root{
    --light: #ffffff;
    --dark: #222222;
    --dark-background: #464646;
    --dark-muted: #EAE2DB;
    --back-form: #BCBCCF;
    --highlight: #F39C37;
    --accent: #F39C37;
    --danger:#ef4444;    /* red-500 */
    --ok:#10b981;        /* emerald-500 */
}
html{
  scroll-behavior: smooth;
}

.fieldname {
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0px 4px 0px;
    color: #000000;
}
.appearance (@value: none) {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}



input[type="text"]{
    width: calc( 100% - 24px);
    padding: 10px 10px;
    margin: 2px 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 #F74E11;
    -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 #F74E11;
    -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;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}