/* Sol taraf görsel ve overlay */
.login-thumb {
    position: relative;
}

.login-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Logo pozisyonu */
.login-thumb .logo img {
    width: 150px;
    height: auto;
}

/* Overlay ekleme */
.login-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* arka plan koyulaştırma */
    border-radius: 8px;
    z-index: 1;
}

/* Yapım aşamasındaki yazılar */
.construction-overlay {
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.construction-overlay h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease forwards;
}

.construction-overlay p {
    font-size: 1rem;
    font-weight: 500;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

/* Sağ taraf mesajlar */
.login-forms h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.login-forms p {
    font-size: 1rem;
    color: #555;
}

.login-forms ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* İletişim butonları */
.login-forms .btn {
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.login-forms .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* WhatsApp butonu */
.btn-success {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}

.btn-success:hover {
    background-color: #1ebe5b;
    border-color: #1ebe5b;
}

/* E-posta butonu */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0062cc;
    border-color: #0062cc;
}

/* Fade animasyonları */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .construction-overlay h2 {
        font-size: 1.5rem;
    }
    .construction-overlay p {
        font-size: 0.95rem;
    }
    .login-forms h2 {
        font-size: 1.5rem;
    }
    .login-forms ul li {
        font-size: 0.9rem;
    }
    .login-thumb .logo img {
        width: 120px;
    }
}
.login-thumb {
    position: relative;
}

.login-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo-img {
    max-width: 150px; /* Logo büyüklüğü */
    height: auto;
}

/* Yapım aşamasındaki overlay */
.construction-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
}

/* Responsive ayarlar */
@media (max-width: 992px) {
    .logo-img {
        max-width: 120px;
    }

    .construction-overlay h2 {
        font-size: 1.5rem;
    }

    .construction-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        max-width: 100px;
    }

    .construction-overlay h2 {
        font-size: 1.2rem;
    }

    .construction-overlay p {
        font-size: 0.9rem;
    }
}

