#login-popup-overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    width: 100%;
	max-width: 400px; /* Mobil için maksimum genişlik belirleyelim */
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#login-popup {
    background-color: #353f49;
    padding: 30px;
    border-radius: 8px;
	border-width: 3px;
	border-color: #b91c1c;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    #login-popup {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
        background-color: rgba(0, 0, 0, 0.7); /* Mobilde daha belirgin olması için arka planı koyulaştıralım */
    }

.login-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
}


.login-popup-content input {
    width: 100%;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ccc;
}


.close-btn {
    position: absolute;
    top: 1px;
    right: 5px;
    font-size: 30px;
    cursor: pointer;
	color: red;
}
#login-form button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #007bff; /* Mavi renk */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#login-form button:hover {
    background-color: #0056b3; /* Daha koyu mavi */
}
#login-form input {
    padding: 10px;
    margin-top: 5px;
}