﻿.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;

}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

    .floating-element:nth-child(1) {
        width: 240px;
        height: 240px;
        top: 10%;
        left: 15%;
        background-color: #E04980;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        width: 180px;
        height: 180px;
        top: 50%;
        left: 75%;
        background-color: #E04980C9;
        animation-delay: 1.5s;
    }

    .floating-element:nth-child(3) {
        width: 120px;
        height: 120px;
        top: 80%;
        left: 30%;
        background-color: #E04980A1;
        animation-delay: 3s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}



.reset-container {
    padding: 5em 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E049804D;
}

.reset-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.reset-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
}

    .reset-header h2 {
        color: #E04980;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .reset-header i {
        font-size: 4.5rem;
        color: #E04980;
        margin-bottom: 30px;
        display: block;
    }

    .reset-header p {
        margin-bottom: 0px;
    }

.reset-body {
    padding: 30px;
}

.reset-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}

    .reset-footer a {
        color: #E04980;
        text-decoration: none;
        font-weight: 500;
    }

        .reset-footer a:hover {
            text-decoration: underline;
        }

.form-group.floating-label {
    margin-top: 20px;
}

#resetBtn {
    background-color: #E04980;
    border-color: #E04980;
    width: 100%;
    margin-top: 30px;
    border-radius: 0;
    padding: 12px 0;
    font-weight: bold;
    color: white;
    transition: all 0.3s;
}

    #resetBtn:hover {
        background-color: #d43d75;
        border-color: #d43d75;
    }

    #resetBtn i {
        margin-right: 8px;
    }


/* BOTONES ALERT*/
.custom-reset-btn {
    background-color: #E04980;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

    .custom-reset-btn:hover {
        background-color: #e2779e;
        color: white;
    }


@media (max-width: 767.98px) {
    .reset-container {
        padding: 2em 0;
    }

    .reset-card {
        margin: 0 15px;
    }
}

.no-border-loader {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.swal2-backdrop-show {
    background-color: rgba(255,255,255,0.7) !important;
}

.swal2-popup {
    padding: 0 !important;
    margin: 0 !important;
}
