.contest-form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.contest-form-row label {
    margin-bottom: 5px;
    font-weight: bold;
}
.contest-form-row input, .contest-form-row select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.required-field {
    border: 2px solid #fff2f1 !important;
}
.required-field:focus {
    border: 2px solid #fdaaaa !important;
}
.nota {
    font-size: small;
    color: #4c4c4c;
    font-style: italic;
}

.delete-subscriber {
    cursor: pointer;
}

.required-asterisk {
    color: #e53935;
    margin-left: 5px;
}
#subscriber-registration-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#subscriber-registration-form input[type="submit"] {
    background-color: #366c1c;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 6px;
}
#subscriber-registration-form input[type="submit"]:hover {
    background-color: #5ba438;
}
#contest-message {
    margin-top: 20px;
    font-size: 16px;
}