body {
    font-family: Arial, sans-serif;
    background-color: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
    padding: 20px;
}

.container {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin: 25px 0 0 0;
}

input,
select,
textarea {
    width: 95%;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    height: 80px;
}


.radio-group {
    display: flex;
    flex-direction: row;
    gap: 20px 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
}

button {
    transition: background 0.3s ease-in-out;
}

.button-disparo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #fff;
    font-size: 16px;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    height: 55px;
}

.button-disparo i {
    margin-right: 8px;
}

.button-disparo:hover {
    background-color: #1ebc5e;
}

.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: -9px;
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.15s ease-out 0;
    -moz-transition: all 0.15s ease-out 0;
    transition: all 0.15s ease-out 0;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    outline: none;
    position: relative;
    margin-right: 0.5rem;
    z-index: 1000;
}

.option-input:checked {
    background: linear-gradient(-90deg, #1ebc5e, rgb(20, 167, 78), rgb(25, 150, 75));
}

.option-input:checked::before {
    font-family: FontAwesome;
    width: 20px;
    height: 20px;
    right: 0px;
    top: 3px;
    position: absolute;
    content: '\f00c';
    display: inline-block;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
}

.option-input.radio {
    border-radius: 50%;
}

.alerta {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 3px 3px 3px 4px;
}