.crear-registration {
    width: min(100%, 760px);
    margin: 2rem auto;
}

.crear-registration__header {
    margin-bottom: 1.5rem;
}

.crear-registration__header h1 {
    margin-bottom: .4rem;
}

.crear-registration__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.crear-field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.crear-field--full {
    grid-column: 1 / -1;
}

.crear-field label {
    font-weight: 600;
}

.crear-field input,
.crear-field select {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    padding: .65rem .75rem;
    font: inherit;
}

.crear-field small {
    font-size: .85em;
}

.crear-registration__notice {
    margin: 0 0 1.25rem;
    padding: .9rem 1rem;
    border: 1px solid currentColor;
    border-radius: 4px;
}

.crear-registration__required {
    margin-top: 1rem;
    font-size: .9em;
}

.crear-registration__submit {
    min-height: 44px;
    margin-top: .75rem;
    padding: .7rem 1.2rem;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.crear-registration__resend {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid currentColor;
}

.crear-registration__resend h2 {
    margin-bottom: .35rem;
}

.crear-registration__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 640px) {
    .crear-registration__grid {
        grid-template-columns: 1fr;
    }

    .crear-field--full {
        grid-column: auto;
    }
}
