.div_popup_close{
    width: 100%;
    height: calc(100vh - 0px);
    background-color: rgb(255,255,255,0.6);
    backdrop-filter: blur(15px); 
    position: fixed;
    z-index: 10;
    display: none;
    top: 0px;
    left: 0px;
}
.div_popup_form{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; 
    z-index: 11; 
    width: 540px;
    height: 615px;
    max-width: 500px;
    border: 8px solid rgb(255,255,255,0.9);
    border-radius: 22px; 
    background-color: var(--light); 
    filter: drop-shadow(0px 0px 10px rgb(0,0,0,0.15));">
}

.fieldname{
    font-family: 'Playfair Display', serif;
    margin: 20px 0px 10px 0px;
    font-size: 15px;
    font-weight: 300;
    color: var(--dark);
    cursor: pointer;
}
input[type="text"]{
    width: calc( 100% - 24px);
    margin: 4px 0px 10px 0px;
    padding: 10px 10px;
    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(--muted);
    -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(--muted);
    -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;
}
