﻿.container-password-link{
    margin-top:2rem !important;
    margin-bottom:2rem !important;
}
.container_circle {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}
.wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #24C6DC;
    background: -webkit-linear-gradient(to bottom, #514A9D, #24C6DC);
    background: linear-gradient(to bottom, #514A9D, #24C6DC);
}

.box div {
    position: absolute;
    width: 60px;
    height: 60px;
}
.box div:nth-child(1) {
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}
.box div:nth-child(2) {
    top: 94%;
    left: 89%;
    animation: animate 7s linear infinite;
}
.box div:nth-child(3) {
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
}
.box div:nth-child(4) {
    top: 33%;
    left: 80%;
    animation: animate 10s linear infinite;
}
.box div:nth-child(5) {
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}
.box div:nth-child(6) {
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}
.box div:nth-child(7) {
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}
.box div:nth-child(8) {
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}
.box div:nth-child(9) {
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
}
.box div:nth-child(10) {
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}
.circle_left {
    top: 260px;
    left: 150px;
    animation: animate 15s linear infinite;
}

.circle_right {
    top: 350px;
    right: 200px;
    animation: animate 16s linear infinite;
}
.circle_rightBottom {
    bottom: 45px;
    animation: animate 16s linear infinite;
}
@keyframes animate {
    0% {
        transform: scale(0) translateY(-90px) rotate(360deg);
        opacity: 1;
    }

    100% {
        transform: scale(1.3) translateY(-90px) rotate(-180deg);
        border-radius: 50%;
        opacity: 0;
    }
}

.circle {
    position: absolute;
    height: 150px;
    width: 150px;
    border-radius: 309px;
    opacity: 50%;
    background: radial-gradient(50.75% 50.6% at 50% 50%, rgb(255 255 255 / 29%) 0%, rgb(70 156 186 / 0%) 0.01%, rgb(52 139 166 / 0%) 0.02%, rgb(74 179 227 / 23%) 28.65%, rgb(153 201 213 / 50%) 59.38%, rgb(184 224 233 / 66%) 78.13%, rgb(217 239 244) 95.31%, rgb(255 255 255) 99.99%, rgb(255 255 255 / 68%) 100%);
}

.image-left {
    position: absolute;
    top: 41%;
    left: 62%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 50px;
}

.image-right {
    position: absolute;
    top: 34%;
    right: 48%;
    transform: translate(50%, -50%);
}

.text-right {
    margin-top: 50px;
}

.loading svg polyline {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.loading svg polyline#back {
    fill: none;
    stroke: white;
}
.loading svg polyline#front {
    fill: none;
    stroke: #00bad0;
    stroke-dasharray: 48, 144;
    stroke-dashoffset: 192;
    animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
    72.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}
/* Pantallas Pequeñas */
@media (max-width: 767px) {
    .circle__bg {
        display: none;
    }
}
/*.circle_bottom {top: 446px;}*/

.circle__bg {
    position: absolute;
    border-radius: 50%;
    opacity: 50%;
    width: 750px;
    height: 750px;
    background: radial-gradient(50% 70% at 50% 80%, #65c3d300 80%, #ffffff 100%);
}

/* Custom Geolocation Modal Styles */
#geoLocationModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #FFFFFF;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#geoLocationModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #000000;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
}

#geoLocationModal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
}

#geoLocationModal .modal-body {
    padding: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

#geoLocationModal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    justify-content: center;
}

/* Custom Button Styles */
#geoLocationModal .btn {
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    min-width: 120px;
}

#allowLocationBtn {
    background-color: #4CAF50;
    color: white;
}
#allowLocationBtn:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#denyLocationBtn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}
#denyLocationBtn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#geoLocationModal .modal-dialog {
    animation: fadeIn 0.4s ease-out;
}

.status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
}

.requesting {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    #geoLocationModal .modal-content {
        margin: 20px;
    }

    #geoLocationModal .modal-footer {
        flex-direction: column;
    }

    #geoLocationModal .btn {
        margin: 5px 0;
        width: 100%;
    }
}

/* ── Toggle trigger ───────────────────────────────────── */
.btn-recuperar-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .btn-recuperar-toggle:hover {
        color: rgba(60, 60, 100, 0.95);
    }

    .btn-recuperar-toggle .fa {
        font-size: 10px;
        transition: transform 0.2s ease;
    }

    .btn-recuperar-toggle.is-open .fa {
        transform: rotate(180deg);
    }

/* ── Options container ────────────────────────────────── */
#opcionesRecuperacion {
    display: none;
    margin-top: 8px;
    border-radius: 10px;
    overflow: hidden;
    /* Matches the frosted glass card border */
    border: 1px solid rgba(255, 255, 255, 0.55);
    width: 100%;
    /* Frosted glass background matching wrap-login100 */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

/* ── Individual option button ─────────────────────────── */
.opcion-recuperar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(70, 70, 100, 0.9);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
    box-sizing: border-box;
}

    .opcion-recuperar:last-child {
        border-bottom: none;
    }

    .opcion-recuperar:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.opcion-recuperar--password {
    border-left-color: #378add;
}

.opcion-recuperar--usuario {
    border-left-color: #7f77dd;
}

/* ── Icon ─────────────────────────────────────────────── */
.opcion-recuperar__icon {
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.opcion-recuperar__icon--blue {
    color: #378add;
}

.opcion-recuperar__icon--purple {
    color: #7f77dd;
}

/* ── Text block ───────────────────────────────────────── */
.opcion-recuperar__texto {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.opcion-recuperar__label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(50, 50, 80, 0.9);
    display: block;
    white-space: nowrap;
}

.opcion-recuperar__sub {
    font-size: 11px;
    color: rgba(80, 80, 110, 0.6);
    display: block;
    white-space: nowrap;
}

/* ── Arrow ────────────────────────────────────────────── */
.opcion-recuperar__arrow {
    font-size: 10px;
    color: rgba(80, 80, 110, 0.4);
    margin-left: auto;
    flex-shrink: 0;
}