/* Giriş Sayfası Arka Plan */
.login-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 20%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    z-index: 2;
}

.login-right {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

/* Giriş Ortasındaki İkon */
.login-divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100px;
    height: 100px;
    background-color: #f26435;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 50px;
}

@media (max-width: 768px) {
    .login-divider-icon {
        display: none;
    }
}

/* Şifre Göster/Gizle */
.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

/* Alıntı Kutusu */
.quote-box {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    max-width: 350px;
}

#quote-text,
#quote-author {
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.blur-out {
    filter: blur(4px);
    opacity: 0;
}

/* Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #f26435;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* İmza */
.signature {
    z-index: 10;
    font-size: 13px;
    opacity: 0.7;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 8px;
}

@media (max-width: 768px) {
    .signature {
        font-size: 12px;
    }
}

