/* Genel Sayfa Ayarları */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.login-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px; /* Daha yuvarlak köşeler */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Daha yumuşak gölge */
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.brand-logo img {
    max-width: 350px;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Sosyal Login Bölümü */
.social-login {
    display: flex;
    justify-content: center; /* Tam ortalamayı sağlar */
    align-items: center; /* Dikey hizalama */
    margin-bottom: 20px;
}

/* Google Login Butonu */
.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #ddd;
    padding: 5px 10px; /* Daha az iç boşluk */
    border-radius: 50px;
    font-size: 14px; /* Yazıyı küçült */
    font-weight: 500;
    color: #d71a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    width: 300px; /* Daha dar */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.google-login img {
    height: 18px; /* İkon boyutu */
    margin-right: 10px;
}

/* Hover Durumu */
.google-login:hover {
    background: #d71a1a91; /* Kırmızı arka plan */
    color: #ffffff; /* Beyaz metin */
    border-color: #d71a1a; /* Çerçeve rengi kırmızı */
    box-shadow: 0 6px 15px rgba(215, 26, 26, 0.4); /* Hover gölgesi */
    transform: translateY(-1px); /* Hover'da hafif yukarı hareket */
}

/* Basılma Durumu */
.google-login:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); /* Daha küçük gölge */
}
