﻿/* Tüm font ayarı */
body {
    font-family: Candara, 'Century Gothic', Garamond, sans-serif;
    margin: 0;
    padding: 0;
}

/* Arka plan resmi */
.login-background {
    background: url('../images/login-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Kart (form kutusu) */
.login-card {
    background-color: rgba(236, 244, 255, 0.80); /* mavimsi saydam */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    max-width: 400px;
    width: 100%;
}

    /* Giriş başlığı */
    .login-card h2 {
        color: #052947;
        font-weight: bold;
    }

/* Logo */
.login-logo {
    max-height: 70px;
    animation: logoFadeIn 1.2s ease-in-out;
}

/* Buton rengi */
.btn-primary {
    background-color: #476f91;
    border-color: #476f91;
}

    .btn-primary:hover {
        background-color: #365776;
        border-color: #365776;
    }

/* Giriş kutusunun içeri kayma animasyonu */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide {
    animation: slideUp 0.8s ease-out;
}

/* Logo fade-in animasyonu */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
