body {
    background-color: #eddbc3;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 90%;
    margin: 20px;
}

/* Estilos para el logo */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-img {
    width: 100%;
    max-width: 22em;
    height: auto;
}

/* Estilos para el título y el párrafo */
h2 {
    color: #b8752f;
    text-align: center;
    margin-bottom: 25px;
}

.form-description {
    text-align: center;
    margin-top: -15px;
    margin-bottom: 25px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Estilos para los campos del formulario */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #b8752f;
    font-weight: bold;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #b8752f;
    box-shadow: 0 0 5px rgba(184, 117, 47, 0.5);
}

/* Estilos para el checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #555;
    user-select: none;
    line-height: 1.4;
}

.form-checkbox .datos-personales a {
    color: #b8752f;
    text-decoration: underline;
}

.form-checkbox .datos-personales a:hover {
    color: #a06626;
}

/* Estilos para el botón de envío */
.btn-submit {
    background-color: #b8752f;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Media query para pantallas más pequeñas (celulares) */
@media (max-width: 600px) {
    .form-container {
        padding: 20px;
        margin: 10px;
        border-radius: 8px;
    }

    .logo-img {
        max-width: 15em;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .form-description {
        font-size: 0.9rem;
    }

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

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .form-checkbox label {
        font-size: 0.85rem;
    }

    .btn-submit {
        font-size: 1rem;
        padding: 10px 15px;
    }
}