/**
# Copyright (C) 2024 by: WeDevlops Team  	   	   	   	   
# Homepage   : www.wedevlops.com		   	   	   
# Author     : WeDevlops    		   	   	   	   
# Email      : info@wedevlops.com	   	   	   
# Version    : 1.0.0   
# @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
/* Popup container - hidden by default */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Popup content */
.popup-content {
    background-color: #ffffff6e;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

/* Input field styling with icons */
.login-input {
    position: relative;
    margin-bottom: 15px;
}

.login-input i {
    position: absolute;
    top: 50%;
    left: 230px;
    transform: translateY(-50%);
    color: #666;
}

.login-input input {
    padding-left: 35px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-links {
    margin-top: 10px;
    text-align: center;
}

.login-links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

.login-links a:hover {
    text-decoration: underline;
}
