.patient__chaghe{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.patient__chaghe input[type="radio"] {
  accent-color: #5986AF;
  width: 20px;
  height: 20px;
  -webkit-appearance:auto;
}
.patient__chaghe .hint{
    color:  #7F95A0;
    font-family: "Open Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.patient__filds--group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.patient__filds--group input{
    display: flex;
    height: 57px;
    padding: 12px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 7px;

}
.patient__filds--group .input-wrapper {
    position: relative;
    display: inline-block;
}

.patient__filds--group .required-star {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #E31E24;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    pointer-events: none; /* Чтобы не мешало кликам */
}

.patient__filds--group input {
    padding-right: 25px; /* Место для звездочки */
}
.law-checkbox.not__middle,
.law-checkbox.patient__agree{
    margin-bottom: 30px;
}
.forma__nalogovi .law-checkbox label{
    margin-left: 0;
}
.patient__filds--group select{
    box-shadow:none;
    border-radius: 7px;
    border: 1px solid  #E6E9EB;
}
.patient__filds--group select .default_period {
    color: #97A4AF;
}
.input-wrapper .up-down{
    position: absolute;
    right: 2.5%;
    top: 30%;
}
/* CSS для анимации */
.up-down svg {
    transition: transform 0.3s ease;
}

.up-down.select-open svg {
    transform: rotate(180deg);
}

.form-field-label{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #97A4AF;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease;
    pointer-events: none; /* Чтобы не мешало кликам на input */
}
.form-field-label.focusd{
    font-size: 10px;
    top: 12px;
}