.password-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.password-card {
    width: 100%;
    max-width: 480px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(43, 43, 43, 0.2);
    padding: 2rem;
}
.form-icon {
    font-size: 3rem;
    color: #691b31;
}
.form-title {
    color: #691b31;
    font-weight: bold;
}
.glow-button {
    position: relative;
    padding: 10px 20px;
    border-radius: 7px;
    border: 2px solid rgb(105, 27, 49);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background: transparent;
    color: #691b31;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    transition: all 0.2s ease-in;
}
.glow-button:hover {
    background: rgb(105, 27, 49);
    box-shadow: 0 0 30px 5px rgba(160,33,66, 0.815);
    transition: all 0.2s ease-out;
    color: #fff;
}
.glow-button:hover::before {
    animation: sh02 0.5s 0s linear;
}
.glow-button::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    transform: skewX(-20deg);
}
@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        left: 100%;
    }
}
.glow-button:active {
    box-shadow: 0 0 0 0 transparent;
    transition: box-shadow 0.2s ease-in;
}
.form-label {
    color: #2b2b2b;
}
.requirements {
    font-size: 0.9rem;
}
.valid {
    color: green;
}
.invalid {
    color: red;
}
.alert-message {
    animation: fadeIn 0.5s, fadeOut 0.5s 2.5s;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
.glow-button-secondary {
    position: relative;
    padding: 10px 20px;
    border-radius: 7px;
    border: 2px solid #6c757d; /* gris medio */
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background: transparent;
    color: #6c757d;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    transition: all 0.2s ease-in;
}

.glow-button-secondary:hover {
    background: #6c757d;
    box-shadow: 0 0 30px 5px rgba(108,117,125, 0.5);
    transition: all 0.2s ease-out;
    color: #fff;
}

.glow-button-secondary:hover::before {
    animation: sh02 0.5s 0s linear;
}

.glow-button-secondary::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    transform: skewX(-20deg);
}

.glow-button-secondary:active {
    box-shadow: 0 0 0 0 transparent;
    transition: box-shadow 0.2s ease-in;
}

.glow-button-gold {
    position: relative;
    padding: 10px 20px;
    border-radius: 7px;
    border: 2px solid #c59d18; /* dorado */
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background: transparent;
    color: #c59d18;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    transition: all 0.2s ease-in;
}

.glow-button-gold:hover {
    background: #c59d18;
    box-shadow: 0 0 30px 5px rgba(197,157,24, 0.6);
    transition: all 0.2s ease-out;
    color: #fff;
}

.glow-button-gold:hover::before {
    animation: sh02 0.5s 0s linear;
}

.glow-button-gold::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    transform: skewX(-20deg);
}

.glow-button-gold:active {
    box-shadow: 0 0 0 0 transparent;
    transition: box-shadow 0.2s ease-in;
}

/* Estilo general */
.checkbox-wrapper * {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-wrapper label {
    --size: 40px;
    --shadow: calc(var(--size) * .07) calc(var(--size) * .1);
    position: relative;
    display: block;
    width: var(--size);
    height: var(--size);
    margin: 0 auto;
    background-color: #691b31;
    background-image: linear-gradient(45deg, #691b31 0%, #dbc189 50%, #1a1a1a 100%);
    border-radius: 50%;
    box-shadow: 0 var(--shadow) #1a1a1a;
    cursor: pointer;
    transition: 0.2s ease transform, 0.2s ease background-color,
    0.2s ease box-shadow;
    overflow: hidden;
    z-index: 1;
}

.checkbox-wrapper label:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: calc(var(--size) * .7);
    height: calc(var(--size) * .7);
    margin: 0 auto;
    background-color: #ffffff;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: inset 0 var(--shadow) #dbc189;
    transition: 0.2s ease width, 0.2s ease height;
}

.checkbox-wrapper label:hover:before {
    width: calc(var(--size) * .55);
    height: calc(var(--size) * .55);
    box-shadow: inset 0 var(--shadow) #e7d8a3;
}

.checkbox-wrapper label:active {
    transform: scale(0.9);
}

.checkbox-wrapper .tick_mark {
    position: absolute;
    top: -1px;
    left: calc(var(--size) * .09);
    width: calc(var(--size) * .6);
    height: calc(var(--size) * .6);
    transform: rotateZ(-40deg);
}

.checkbox-wrapper .tick_mark:before,
.checkbox-wrapper .tick_mark:after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    border-radius: 2px;
    opacity: 0;
    transition: 0.2s ease transform, 0.2s ease opacity;
}

.checkbox-wrapper .tick_mark:before {
    left: 0;
    bottom: 0;
    width: calc(var(--size) * .1);
    height: calc(var(--size) * .3);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.23);
    transform: translateY(calc(var(--size) * -.68));
}

.checkbox-wrapper .tick_mark:after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(var(--size) * .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.23);
    transform: translateX(calc(var(--size) * .78));
}

.checkbox-wrapper input[type="checkbox"]:checked + label {
    background-color: #691b31;
    background-image: linear-gradient(45deg, #691b31 0%, #dbc189 50%, #1a1a1a 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.checkbox-wrapper input[type="checkbox"]:checked + label:before {
    width: 0;
    height: 0;
}

.checkbox-wrapper input[type="checkbox"]:checked + label .tick_mark:before,
.checkbox-wrapper input[type="checkbox"]:checked + label .tick_mark:after {
    transform: translate(0);
    opacity: 1;
}

<!---->/* From Uiverse.io by SpatexDEV *//* Estilos base para ambos botones */
.custom-file-button,
.custom-file-button-22 {
    border: none;
    display: flex;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    user-select: none;
    gap: 0.75rem;
    box-shadow:
            0 4px 6px -1px #488aec31,
            0 2px 4px -1px #488aec17;
    transition: all 0.6s ease;
}

.custom-file-button:hover,
.custom-file-button-22:hover {
    box-shadow:
            0 10px 15px -3px #488aec4f,
            0 4px 6px -2px #488aec17;
}

.custom-file-button:focus,
.custom-file-button:active,
.custom-file-button-22:focus,
.custom-file-button-22:active {
    opacity: 0.85;
    box-shadow: none;
}

.custom-file-button svg,
.custom-file-button-22 svg {
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none;
}

/* Colores específicos */
.custom-file-button {
    background-color: #6f7271;
}

.custom-file-button-22 {
    background-color: #dbc189;
}


.accion-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.accion-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.accion-input-container {
    position: relative;
    height: 70px;
    width: 70px;
    margin: 0.5rem;
}

.accion-radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.accion-radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 2px solid #691b31;
    border-radius: 10px;
    transition: transform 300ms ease;
    background-color: #fff;
}

.accion-icon svg {
    fill: #691b31;
    width: 2rem;
    height: 2rem;
}

.accion-radio-label {
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #691b31;
    margin-top: 0.5rem;
}

.accion-radio-button:checked + .accion-radio-tile {
    background-color: #691b31;
    transform: scale(1.1);
    color: white;
}

.accion-radio-button:checked + .accion-radio-tile .accion-icon svg {
    fill: white;
}

.accion-radio-button:checked + .accion-radio-tile .accion-radio-label {
    color: white;
}




/* BOTÓN AMPLIACIONES */
.btn_ampliaciones {
    position: relative;
    width: 200px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #34974d;
    background-color: #3aa856;
    text-decoration: none;
    overflow: hidden;
}

.btn_ampliaciones, .btn_ampliaciones__icon, .btn_ampliaciones__text {
    transition: all 0.3s;
}

.btn_ampliaciones__text {
    transform: translateX(30px);
    color: #fff;
    font-weight: 600;
}

.btn_ampliaciones__icon {
    position: absolute;
    transform: translateX(159px);
    height: 100%;
    width: 39px;
    background-color: #34974d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_ampliaciones svg {
    width: 24px;
    stroke: #fff;
}

.btn_ampliaciones:hover {
    background: #34974d;
}

.btn_ampliaciones:hover .btn_ampliaciones__text {
    color: transparent;
}

.btn_ampliaciones:hover .btn_ampliaciones__icon {
    width: 198px;
    transform: translateX(0);
}

.btn_ampliaciones:active .btn_ampliaciones__icon {
    background-color: #2e8644;
}

.btn_ampliaciones:active {
    border: 1px solid #2e8644;
}


/* BOTÓN FUERA DE CATÁLOGO */
.btn_fuera_catalogo {
    position: relative;
    width: 200px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #c28700;
    background-color: #f0ad4e;
    text-decoration: none;
    overflow: hidden;
}

.btn_fuera_catalogo, .btn_fuera_catalogo__icon, .btn_fuera_catalogo__text {
    transition: all 0.3s;
}

.btn_fuera_catalogo__text {
    transform: translateX(30px);
    color: #fff;
    font-weight: 600;
}

.btn_fuera_catalogo__icon {
    position: absolute;
    transform: translateX(159px);
    height: 100%;
    width: 39px;
    background-color: #c28700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_fuera_catalogo svg {
    width: 24px;
    stroke: #fff;
}

.btn_fuera_catalogo:hover {
    background: #c28700;
}

.btn_fuera_catalogo:hover .btn_fuera_catalogo__text {
    color: transparent;
}

.btn_fuera_catalogo:hover .btn_fuera_catalogo__icon {
    width: 198px;
    transform: translateX(0);
}

.btn_fuera_catalogo:active .btn_fuera_catalogo__icon {
    background-color: #a06f00;
}

.btn_fuera_catalogo:active {
    border: 1px solid #a06f00;
}

