/* FORGOT PASSWORD MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1b20 0%, #0a0a0a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #fff;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.modal-subtitle {
    color: #999;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.reset-message {
    margin-top: 20px;
}

.success-message,
.error-message {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.success-message p,
.error-message p {
    margin: 5px 0;
}