body {
    font-family: "Montserrat";
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    background-color: #fff;
    padding: 5% 4% 2% 4%;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

h1 {
    color: #003435;
    padding: 2%;
    margin-bottom: 5%;
    font-size: 1.8em;
}

.options-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 4%;
    flex-wrap: wrap;
    margin-bottom: 4%;
}
.option {
    flex: 1;
    min-width: 180px;
    background-color: rgb(216, 223, 223);
    border: none;
    border-radius: 15px;
    margin-top: 2%;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.option h3 {
    color: #013334;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.option p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5em;
    color: #555;
}

.select-btn {
    margin-top: auto;
    align-self: center;
    background-color: #00C29D;
    color: white;
    font-family: "Montserrat";
    font-weight: 700;
    padding: 8px 30px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    justify-content: center;
    width: fit-content;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.select-btn:hover {
    background-color: #029f83;
}

.selection-result {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    display: none;
}
/* Estilos Formularios */
.form-container {
    background-color: #fff;
    padding: 5% 4% 2% 4%;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
}

.form-container h1 {
    color: #003435;
    text-align: center;
    margin-bottom: 30px;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.columna {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.form-group input[type="text"],
.form-group textarea,
.form-group input[type="number"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

input[disabled] {
    background-color: #e0e0e0;
    color: #555;
    cursor: not-allowed;
}

.submit-btn {
    margin-top: auto;
    align-self: center;
    background-color: #00C29D;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 800;
    transition: background-color 0.3s ease;
    display: block;
    margin-top: 30px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #029f83;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #333;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    flex-grow: 1;
    padding-right: 30px;
}

.percentage-symbol {
    position: absolute;
    right: 30px;
    color: #555; 
    pointer-events: none;
}
