:root{
    --light: #ffffff;
    --dark: #7B5946;
    --muted: #DCC7B8;
    --highlight_dark: #C8A898;
    --border-field: #C8A898;
    --border_radius: 10px;
    --border_thickness: 5px;
    --button_a_background: #C98591;
    --button_a_outline: #F8EDEE;
}
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 var(--border-field);
    -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 var(--border-field);
    -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;
}