.BtnsRegistro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.BtnReg {
    width: 240px;
    border: 2px solid var(--ds-blue-app);
    border-radius: 4px;
    padding: 5px 0;
    margin: 0 5px;
    cursor: pointer;
    background: none;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    /* Permite que los elementos salten de línea */
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente si se desea */
}

.container {
    width: 300px;
    margin: 20px 10px;
    text-align: center
}

/*Styling Selectbox*/
.dropdown {
    width: 300px;
    display: inline-block;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 2px rgb(204, 204, 204);
    transition: all .5s ease;
    position: relative;
    font-size: 14px;
    color: #474747;
    height: 100%;
    text-align: left;

    flex: 1 1 300px;
    /* permite que se adapten en ancho mínimo de 300px */
    max-width: 100%;

    border: 2px solid var(--ds-blue-app);
}

.dropdown .select {
    cursor: pointer;
    display: block;
    padding: 10px
}

.dropdown .select>i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px;
}

.select {
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: bolder;
}

.dropdown:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}

.dropdown:active {
    background-color: #f8f8f8
}

.dropdown.active:hover,
.dropdown.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8
}

.dropdown.active .select>i {
    transform: rotate(-90deg)
}

.dropdown .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9;


    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.dropdown .dropdown-menu::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.dropdown .dropdown-menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
}

.dropdown .dropdown-menu {
    padding: 0;
    list-style: none
}

.dropdown .dropdown-menu li:hover {
    background-color: #f2f2f2
}

.dropdown .dropdown-menu li:active {
    background-color: #e2e2e2
}

.SeccionTarjetas {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 50px 20px;
}

/* animacion tarjetas */
.card {
    width: 195px;
    height: 260px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0px 0px 3px 1px #00000088; */
    cursor: pointer;
    overflow: hidden;
    position: relative;

    margin: 10px;
    border-radius: 10px;
}

.card .content {
    border-radius: 5px;
    background: white;
    /* ← CAMBIO AQUÍ */
    width: 186px;
    height: 250px;
    z-index: 1;
    padding: 20px;
    color: black;
    /* ← CAMBIO AQUÍ */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
}

.content {
    display: flex;
    flex-direction: column;
}

.content::before {
    opacity: 0;
    transition: opacity 300ms;
    content: " ";
    display: block;
    background: black;
    width: 50px;
    height: 50px;
    position: absolute;
    filter: blur(50px);
}

.card:hover .content::before {
    opacity: 1;
}

.card::before {
    opacity: 0;
    content: " ";
    position: absolute;
    display: block;
    width: 120px;
    height: 360px;
    background: linear-gradient(90deg, transparent, var(--ds-blue), var(--ds-green), transparent);
    transition: opacity 400ms;
    animation: rotation_9018 3000ms infinite linear;
    animation-play-state: paused;
}

.card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.card::after {
    position: absolute;
    content: " ";
    display: block;
    width: 190px;
    height: 254px;
    background: #008ea3;
    backdrop-filter: blur(50px);
    border-radius: 10px;
}

.ImgEscuela {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

@keyframes rotation_9018 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* codigo de escuela */

.input-add-friend {
    /* width: 17em;
    height: 11em; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    --color: rgb(169, 116, 255);
    /* --background-color: rgb(36, 34, 39); */
}

.input-add-friend {
    display: flex;
    align-self: flex-start;
    margin-left: 0.5em;
}


.input-add-friend-input {
    width: 16em;
    height: 8em;
    background-color: var(--background-color);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    font-weight: bold;
    box-shadow:
        -0.05em 0em var(--color),
        -0.05em 0.05em var(--color),
        0.05em 0.05em var(--color),
        0.05em -0.05em var(--color),
        0em 0em 2.5em 0em rgb(121, 174, 30, 0.15);
    position: relative;
    z-index: 0;
    animation: change-box-shadow 5s linear infinite;
}

@keyframes change-box-shadow {
    0% {
        box-shadow:
            -0.05em 0em var(--color),
            -0.05em 0.05em var(--color),
            0.05em 0.05em var(--color),
            0.05em -0.05em var(--color),
            0em 0em 2.5em 0em rgb(169, 116, 255, 0);
    }

    50% {
        box-shadow:
            -0.05em 0em var(--color),
            -0.05em 0.05em var(--color),
            0.05em 0.05em var(--color),
            0.05em -0.05em var(--color),
            0em 0em 2.5em 0em rgb(169, 116, 255, 0.25);
    }

    100% {
        box-shadow:
            -0.05em 0em var(--color),
            -0.05em 0.05em var(--color),
            0.05em 0.05em var(--color),
            0.05em -0.05em var(--color),
            0em 0em 2.5em 0em rgb(169, 116, 255, 0);
    }
}

.input-add-friend-input input {
    width: 16em;
    height: 2.5em;

    border: solid 0.5em transparent;
    font-family: monospace, sans-serif;
    color: var(--background-color);
    font-weight: bold;
    outline: none;
    padding-left: 3.5em;
    letter-spacing: 1em;
    background-color: transparent;
    position: relative;
    z-index: 4;
}

.input::placeholder {
    color: var(--background-color);
    font-weight: bold;
    font-family: monospace, sans-serif;
}

.input-add-friend-checkbox:hover+label {
    opacity: 75%;
}

.input-add-friend-checkbox:hover+label p {
    font-size: 14px;
    transition: all 0.25s ease-in-out;
}

.input-add-friend-checkbox+label {
    width: 13.25em;
    height: 2.25em;
    border: solid 0.5em var(--color);
    background-color: var(--color);
    font-family: monospace, sans-serif;
    color: var(--background-color);
    font-weight: bold;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in-out;
}

.input-add-friend svg {
    position: absolute;
    top: -2.25em;
    right: 0em;
}

.input-add-friend-checkbox:active+label {
    background-color: white;
    border: white;
}

.input-add-friend:has(.input-add-friend-checkbox:checked) {
    filter: hue-rotate(-120deg);
    transition: all 0.25s ease-in-out;
}

.input-add-friend-checkbox:checked~svg {
    animation: jumpicon 0.75s infinite linear;
    animation-iteration-count: 1;
}

@keyframes jumpicon {
    0% {
        top: -2.25em;
        transform: rotate(0deg) scale(1);
    }

    25% {
        top: -2.5em;
        transform: rotate(0deg) scale(1.15);
    }

    50% {
        top: -2.5em;
        transform: rotate(10deg) scale(1.15);
    }

    75% {
        top: -2.5em;
        transform: rotate(-10deg) scale(1.15);
    }

    95% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        top: -2.25em;
        transform: rotate(0deg) scale(1);
    }
}

.input-add-friend-text {
    color: var(--background-color);
    position: absolute;
    letter-spacing: 16px;
    top: 11.5px;
    left: 86px;
    z-index: 3;
}

.input-add-friend-input-behind {
    width: 13.25em;
    height: 2.25em;
    top: 1.35em;
    font-family: monospace, sans-serif;
    color: var(--background-color);
    font-weight: bold;
    background-color: rgb(255, 255, 255);
    position: absolute;
    z-index: 2;
}