.div_popup_form{
    position: fixed;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; 
    z-index: 32; 
    width: 540px;
    height: 600px;
    max-width: 500px;
    border: 8px solid rgb(255,255,255,0.9);
    border-radius: 22px; 
    background-color: var(--form-back);
    filter: drop-shadow(0px 0px 10px rgb(0,0,0,0.15));">
}
.fieldname{
    font-size: 14px;
    font-weight: 400;
    margin: 5px 0px 10px 2px;
    color: var(--black);
}
.appearance (@value: none) {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
input[type="text"]{
    margin: 0px 0px 10px 0px;
    width: calc( 100% - 30px);
    padding: 12px 12px;
    font-size: 18px;
    font-family: 'Roboto',Sans-Serif;
    font-weight: 400;
    color: #000000; 
    border: 1px solid #999999;
    border-radius: 10px;
    background-color : #ffffff; 
    outline: none;
    -webkit-appearance: none;
}
input[type="text"]:focus {
    background-color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(0,0,0,0.05);
    outline: none;
    transition: border-color 0.5s, box-shadow 0.5s, background-color 0.5s;
}

.custom-select {
    padding: 14px 15px;
    font-size: 18px;
    color: #333333; 
    background-color: #ffffff;
    border: 1px solid #999999;
    border-radius: 10px;
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
    width: calc( 100% - 0px);
}
.custom-select:focus {
    box-shadow: 0 0 0 5px rgba(198,23,119,0.08);
    -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;
}