@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

.login-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.login-overlay.active {
    display: block;
}

.login-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #00cc88;
    box-shadow: 0 6px 12px rgba(0, 204, 136, 0.3);
    z-index: 1000;
    width: 350px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.login-popup.active {
    display: block;
}

.login-popup h3 {
    color: #00cc88;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}

.login-popup input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #00cc88;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 204, 136, 0.2);
}

.login-popup input:focus {
    outline: none;
    border-color: #00cc88;
    box-shadow: 0 0 5px rgba(0, 204, 136, 0.5);
}

.login-popup label {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
}

.login-popup button {
    width: 100%;
    padding: 10px;
    background: #00cc88;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.login-popup button:hover {
    background: #009966;
}