body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #253C49;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.logo {
    margin-bottom: 20px;
}

.container {
    display: flex;
    gap: 3rem;
    width: 80%;
    max-width: 900px;
    align-items: stretch;
}

.form-container, .result-container {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.form-container textarea,
.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
}

::placeholder {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

button {
    flex: 1;
    padding: 12px;
    background-color: #FF9800;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

button:hover {
    background-color: #E68900;
}

.result-container {
    background-color: white;
    color: black;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.result-item {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .result-container {
        margin-top: 20px;
    }
}
.encabezado{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.texto-encabezado{
    margin: -2rem 0 2rem 0;
    padding: 0 2rem;
}
.texto-encabezado p{
    text-transform: uppercase;
    text-align: center;

}