#formular {
    display: flex;
    flex: 1 1;
    flex-direction: row;
    margin: auto;
    max-width: 658px;
    width: 100%;
    margin: 45px auto;
    padding: 16px 20px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px 16px;
    flex-wrap: wrap;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 6px 8px 1px rgba(0, 0, 0, 0.10);
}
.break {
    flex-basis: 100%;
    height: 0;
}
div.formHead {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
div.formHead > h2 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
div.formHead > p {
    color: #7E7E7E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.64px;
}
div.campForm, div.selectForm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 300px;
    gap: 6px;
}
div.campForm > label, div.selectForm > label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
div.campForm > input, div.campForm > select {
    width: 300px;
    height: 36px;
    padding: 0 0.5em;
    border-radius: 4px;
    border: 0.5px solid rgba(0, 0, 0, 0.50);
}
div.selectForm {
    width: 300px;
}
div.radioGroup {
    display: inline-flex;
    gap: 0;
}
div.radioGroup label {
    cursor: pointer;
    display: inline-flex;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    height: 36px;
    border: 0.5px solid rgba(0, 0, 0, 0.50);
    background: rgba(236, 236, 236, 0.65);
}
label > span {
    font-size: 14px;
}
div.radioGroup input[type="radio"]:checked + span {
    color: #F00;
    border-color: #F00;
}
div.radioGroup label:nth-child(1){
    border-radius: 4px 0 0 4px;
}
div.radioGroup label:nth-child(2){
    border-radius: 0 4px 4px 0;
}
select {
    background: none;
    cursor: pointer;
}
textarea {
    resize: vertical;
    padding: 0.5em 0.5em;
    border-radius: 4px;
    border: 0.5px solid rgba(0, 0, 0, 0.50);
}
#detalii {
    width: auto;
    height: 113px;
    flex-grow: 1;
}

#btnFormular {
    display: flex;
    cursor: pointer;
    width: 100%;
    padding: 11px 0;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    border-radius: 8px;
    background: #F00;
    color: white;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border: none;
}
#btnFormular:hover {
    background: rgb(209, 0, 0);
}
@media (max-width: 768px) {
    #formular {
        margin: 24px 16px;
        padding: 16px;
        gap: 20px 12px;
    }
    
    div.campForm, div.selectForm {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    div.formHead > h2 {
        font-size: 18px;
    }
    
    div.formHead > p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #formular {
        margin: 16px 12px;
        padding: 12px;
    }
    
    div.radioGroup label {
        padding: 0 12px;
        font-size: 13px;
    }
    
    div.formHead > h2 {
        font-size: 16px;
    }
    
    div.formHead > p {
        font-size: 13px;
    }
}