body {
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.formulario {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: #e7e7e7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-title {
    font-family: 'Arial', sans-serif;
    font-size: 250%;
    font-weight: bold;
    text-align: left;
    margin-bottom: 5%;
}

.form-group {
    margin-bottom: 5%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1%;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 2%;
    color: #83612b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background: #F9E79F;
    color: #83612b;
}

.form-group select {
    cursor: pointer;
    background-color: #f9e79f;
}

.question {
    margin-bottom: 5%;
    color: #83612b;
    font-family: 'Arial', sans-serif;
    font-size: 100%;
    position: relative;
}

.question p {
    font-weight: bold;
}

.question input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 30px;
    height: 30px;
    border: 2px solid #6b4f23;
    border-radius: 4px;
    background-color: #fff;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.question input[type="radio"]:checked {
    background-color: #F1C76C;
    border-color: #F1C76C;
}

.question input[type="radio"]:checked::after {
    content: '✖';
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 18px;
    color: #6b4f23;
    font-weight: bold;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.question input[type="radio"]:hover {
    background-color: #F1C76C;
    border-color: #F1C76C;
}

.submit-btn {
    background-color: #D4AC0D;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

.submit-btn:hover {
    background-color: #B7950B;
}


.phone-input-container {
    display: flex;
    align-items: center;
}

.phone-input-container select, 
.phone-input-container input {
    box-sizing: border-box;
    behavior: url(boxsizing.htc);
}


.phone-input-container select {
    width: 100px;
    margin-right: 10px;
}

.phone-input-container input {
    width: 100%;
}

