.container {
    color: #B2B9C7 !important;

}

.content {
    margin: auto;
    width: 60%;
}

.account-form,
.social-providers-container {
    min-width: 288px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.account-form {
    background-color: rgba(16, 21, 10, 0.8);
}

.fieldset {
    color: #D1D6E0 !important;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: stretch;
    background: transparent;
    height: 65px;
    min-width: 0;
}



.legend {
    padding: 0px 10px;
    background-color: transparent;
    position: absolute;
    top: -0.6em;
    left: 30px;
    font-size: 18px;
    line-height: 1;
    background: rgba(16, 21, 10);
    z-index: 1;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.4px;
}

.fieldset.select {
    width: 100%;
}


.input-element {
    background-color: transparent !important;
    width: 100%;
    padding: 20px !important;
    height: 65px;
    border: 1px solid #4C5465 !important;
    border-radius: 4px 4px 0 0;
    box-sizing: border-box;
    color: #B2B9C7 !important;
    position: relative;
    color-scheme: dark;
    min-width: 0;
    max-width: 100%;

    /* clave para que el input no “rompa” el ancho */

}



.input-element.date {
    padding-left: 50px !important;

    &::-webkit-calendar-picker-indicator {
        position: absolute;
        top: 20;
        left: 20;
        color: #B2B9C7;
        pointer-events: auto;
    }
}

.input-element.select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 25px 25px;
}

.input-element.checkbox {
    appearance: none;
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 0;
    accent-color: #000;
    background: transparent !important;
    padding: 0 !important;
    cursor: pointer;
}

.input-element.checkbox:checked {
    background:
        #95DB32 url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KICAgIDxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xMTRfODQyKSI+CiAgICAgICAgPHBhdGggZD0iTTkuMDAwMTQgMTYuMTdMNS41MzAxNCAxMi43QzUuMTQwMTQgMTIuMzEgNC41MTAxNCAxMi4zMSA0LjEyMDE0IDEyLjdDMi43MzAxNCAxMy4wOSAyLjczMDE0IDEzLjcyIDQuMTIwMTQgMTQuMTFMOCAxOC4yOUM4LjY5MDE0IDE4LjY4IDkuMzIwMTQgMTguNjggOS43MTAxNCAxOC4yOUwyMC4yOTAxIDcuNzEwMDE2QzIwLjY4MDEgNy4zMjAwMTYgMjAuNjgwMSA2LjY5MDAxNiAyMC4yOTAxIDYuMzAwMDE2QzE5LjkwMDEgNS45MTAwMTYgMTkuMjcwMSA1LjkxMDAxNiAxOC44ODAxIDYuMzAwMDE2TDkuMDAwMTQgMTYuMTdaIiBmaWxsPSJibGFjayIvPgogICAgPC9nPgogICAgPGRlZnM+CiAgICAgIDxjbGlwUGF0aCBpZD0iY2xpcDBfMTE0Xzg0MiI+CiAgICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiLz4KICAgICAgPC9jbGlwUGF0aD4KICAgIDwvZGVmcz4KPC9zdmc+") no-repeat center / 70% !important;
}


.input-element.select option {
    background-color: rgba(16, 21, 10);
}



.phone-container {
    display: flex;
    width: 100%;

}


.phone-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    margin: 0 4px 0 0;
}

.phone-elements {
    display: flex;
    gap: 4px;

}

.input-error,
.input-error-phone,
.input-error-check 
{
    color: red;
    font-size: 14px;
}

.input-container.select {
    flex: 0 0 90px;
}

.input-container.phone {
    flex: 1 1 auto;
}

.input-container input:focus {
    border: solid 1px #95db32 !important;
    outline: #95db32
}

.input-container input.errored {
    border: solid 1px #f00 !important;
}

/* Para Chrome, Edge y navegadores basados en WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s !important;
    -webkit-text-fill-color: #D1D6E0;
}


/* Firefox */
input:-moz-autofill {
    box-shadow: 0 0 0px 1000px #1f2937 inset;
    -moz-text-fill-color: #f9fafb;
}

.submit-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-conditions p {
    font-size: 16px;
    color: #B2B9C7;
    line-height: 16px;
    letter-spacing: 0.5px;
}

.link {
    color: #fff;
}

.submit-btn {
    background-color: #95db32 !important;
    color: #000 !important;
    padding: 10px 24px !important;
    transition: all 0.2s ease;
    text-transform: none !important;

}

.submit-btn:focus {
    background-color: #95db32 !important;
    transform: translateY(-1px);

}

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

    .content {
        width: 100%;
    }
}