Испытание: UI-кит для формы [18/18] 100% Можно улучшить код?

body {
width: 550px;
}

form {
width: 400px;
margin: 0 auto;
padding: 20px;
border-radius: 10px;
background-color: #ffffff;
box-shadow: 0 0 10px #cccccc;
}

fieldset {
padding: 10px;
border: 1px solid #34495e;
border-radius: 5px;
}

fieldset legend {
color: #34495e;
}

.half-width {
display: inline-block;
width: 50%;
margin-right: -4px;
}

label {
display: block;
margin-bottom: 5px;
margin-top: 10px;
}

input[type=“radio”],
input[type=“checkbox”] {
display: none;
}

input[type=“radio”] + label,
input[type=“checkbox”] + label {
vertical-align: middle;
color: #7f8c8d;
}

input[type=“checkbox”] + label::before,
input[type=“radio”] + label::before {
content: “”;
display: inline-block;
width: 7px;
height: 7px;
margin-right: 8px;
vertical-align: middle;
border: 3px solid #ffffff;
box-shadow: 0 0 0 3px #bdc3c7;
}

input[type=“radio”] + label::before {
border-radius: 50%;
}

input[type=“checkbox”]:checked + label::before,
input[type=“radio”]:checked + label::before{
background: #1abc9c;
box-shadow: 0 0 0 3px #1abc9c;
}

input[type=“checkbox”]:checked + label,
input[type=“radio”]:checked + label {
color: #1abc9c;
}

input[type=“radio”]:disabled + label::before,
input[type=“checkbox”]:disabled + label::before {
box-shadow: 0 0 0 3px #ecf0f1;
}

input[type=“radio”]:disabled + label,
input[type=“checkbox”]:disabled + label{
color: #ecf0f1;
}

input[type=“text”] {
width: 95%;
height: 24px;
margin-bottom: 10px;
padding: 2px 5px;
color: #000;
border: 2px solid #bdc3c7;
border-radius: 5px;
vertical-align: middle;
}

input[type=text]:required,
input[type=text]:invalid {
border-color: #e74c3c;
}

input:disabled {
color: #bdc3c7;
background: #f5f5f5;
border-color: #ecf0f1;
}

input:invalid {
color: #c0392b;
background: #f2a097;
border-color: #e74c3c;
}

я вместо следующих строк:
input[type=“radio”] + label,
input[type=“checkbox”] + label
использовала просто
input+label
(и аналогично - вместо
input[type=“checkbox”]:checked + label::before,
input[type=“radio”]:checked + label::before
просто: input:checked + label::before),
так как в данном задании в текстовых input нет последующих label.
Всё работает

Посмотрите код пожалуйста, можно что-то улучшить или все нормально?

body {
width: 550px;
}

form {
width: 400px;
margin: 0 auto;
padding: 20px;
border-radius: 10px;
background-color: #ffffff;
box-shadow: 0 0 10px #cccccc;
}

fieldset {
padding: 10px;
border: 1px solid #34495e;
border-radius: 5px;
}

fieldset legend {
color: #34495e;
}

.half-width {
display: inline-block;
width: 50%;
margin-right: -4px;
}

label {
display: block;
margin-bottom: 5px;
margin-top: 10px;
}

.half-width input {
display: none;
}

.half-width label:not(:first-of-type) {
vertical-align: middle;
color: #7f8c8d;
}

.half-width input + label::before {
content: “”;
display: inline-block;
width: 7px;
height: 7px;
margin-right: 8px;
vertical-align: middle;
border: 3px solid #ffffff;
box-shadow: 0 0 0 3px #bdc3c7;
}

.half-width input[type=“radio”] + label::before {
border-radius: 50%;
}

.half-width input:checked + label::before {
background: #1abc9c;
box-shadow: 0 0 0 3px #1abc9c;
}

.half-width input:checked + label {
color: #1abc9c;
}
.half-width input:disabled + label::before {
box-shadow: 0 0 0 3px #ecf0f1;
}

.half-width input:disabled + label {
color: #ecf0f1;
}

input[type=“text”] {
width: 95%;
height: 24px;
margin-bottom: 10px;
padding: 2px 5px;
color: #000;
border: 2px solid #bdc3c7;
border-radius: 5px;
vertical-align: middle;
}

input:required {
border-color: #e74c3c;
}

input:disabled {
color: #bdc3c7;
background: #f5f5f5;
border-color: #ecf0f1;
}

input:invalid {
color: #c0392b;
background: #f2a097;
border-color: #e74c3c;
}