/* Definiciones de fuentes según la guía */
.font-fraunces {
    font-family: 'Fraunces', serif;
}

.font-lexend {
    font-family: 'Lexend', sans-serif;
}

/* Estilo general y contenedor principal */
.vcf-shortcode-wrapper {
    background-color: #f7ffef;
    /* Blanco roto */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 30px 20px;
}

.vcf-form-wrapper {
    width: 100%;
    max-width: 800px;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #111111;
    border-radius: 8px;
    box-shadow: 10px 10px 0px 0px #111111;
}

/* Títulos (Main Profile Name) */
.vcf-h1-style {
    font-size: 2.25rem;
    /* 3xl */
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .vcf-h1-style {
        font-size: 3rem;
        /* 4xl */
    }
}

/* Párrafo de introducción (Section Headings) */
.vcf-p-intro-style {
    font-size: 1.5rem;
    /* 2xl */
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
}

/* Estilos de formulario */
.vcf-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .vcf-form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Etiquetas (Column/Article Titles) */
.vcf-shortcode-wrapper label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #111111;
    margin-bottom: 4px;
}

/* Campos de entrada (Input, Select, Textarea) - Main Bio Text */
.vcf-input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #111111;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 300;
    color: #111111;
    box-sizing: border-box;
    background-color: #ffffff;
    transition: border-color 0.15s, box-shadow 0.15s;
    height: 48px;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input.vcf-input-field,
select.vcf-input-field {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
}

/* Ensure all input types render the same */
input[type="text"].vcf-input-field,
input[type="email"].vcf-input-field,
input[type="tel"].vcf-input-field {
    height: 48px;
    padding: 12px;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-block: 12px;
    padding-inline: 12px;
    direction: ltr;
    margin: 0;
}

/* Specific reset for phone field */
input#phone {
    margin: 0 !important;
}

.vcf-input-field:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 1px #000000;
}

/* Specific overrides to prevent external CSS interference */
.vcf-input-field {
    margin-bottom: 0 !important;
}

textarea.vcf-input-field {
    resize: vertical;
    height: auto !important;
    min-height: 120px;
}

/* Add spacing above message group */
div#vcf-message-group {
    margin-top: 20px;
}

/* Ensure form groups have no extra margins */
div#vcf-name-group,
div#vcf-email-group,
div#vcf-phone-group,
div#vcf-reason-group {
    margin: 0;
}

/* Botón de envío (Column/Article Titles) */
#vcf-submitButton {
    width: 100%;
    padding: 15px 20px;
    background-color: #111111;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    margin-top: 20px;
}

#vcf-submitButton:hover:not(:disabled) {
    background-color: #444444;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#vcf-submitButton:disabled {
    background-color: #aaaaaa;
    cursor: not-allowed;
}

/* Mensaje de Feedback */
#vcf-feedbackMessage {
    margin-top: 32px;
    padding: 40px;
    border: 1px solid #000000;
    background-color: #e9ffe9;
    color: #008000;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

#vcf-feedbackMessage .message-icon {
    margin-right: 0;
    margin-bottom: 12px;
    width: 48px;
    height: 48px;
    color: #008000;
}

#vcf-feedbackMessage .flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}