
/* Evaluation Grid */
.evaluation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evaluation-item {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px 20px;
}

.evaluation-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 12px;
}

.rating-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rating-option:hover {
    border-color: #19BBB7;
    background: rgba(25, 187, 183, 0.04);
}

.rating-option input[type="radio"] {
    accent-color: #19BBB7;
    width: 16px;
    height: 16px;
}

.rating-option input[type="radio"]:checked + span {
    color: #19BBB7;
    font-weight: 500;
}

.rating-option span {
    color: #757575;
    font-size: 14px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #23567D;
    color: #fff;
    border: none;
    border-radius: 8px;
    
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    max-width: 529px;
    height: 48.269px;
    padding: 8px 16px;

}

.btn-submit:hover {
    background-color: #1a4361;
}
.register-form-description{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 0;
}
.register-form-description h3{
    color: #23567D;
    text-align: right;

    font-size: 24px;
    font-weight: 500;
    line-height: 24px; 
            }
.register-form-description span{
                color: #23567D;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
}
.terms-checkbox-wrapper span{
    color:  #333;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px; 
}


/* Responsive */
@media (max-width: 768px) {
    .rating-options {
        flex-direction: column;
    }

   
}
