/**
 * Google ile Giriş Butonu
 * Login ve Register sayfaları için modern Google butonu
 */

/* Google ile giriş container */
.google-login-wrapper {
    margin: 20px 0;
    text-align: center;
}

.google-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
}

.google-divider::before,
.google-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.google-divider span {
    padding: 0 15px;
    color: #777;
    font-size: 14px;
}

/* Google Giriş Butonu */
.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-family: 'Google Sans', Roboto, arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3c4043;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #d2d2d2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #3c4043;
    text-decoration: none;
}

.btn-google:active {
    background: #f1f3f4;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Google Icon */
.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Register sayfası için özel stil */
.authentication .google-login-wrapper,
.register-wrapper .google-login-wrapper {
    margin: 30px auto;
    max-width: 400px;
}

/* Login sayfası için özel stil */
.login-wrapper .google-login-wrapper {
    margin: 20px auto;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-google {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .google-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
}

/* Giriş ve Kayıt sayfalarını ortala */
.authentication,
.login-wrapper,
.register-wrapper {
    max-width: 450px;
    margin: 0 auto;
}

/* Form'un üstüne Google butonunu ekle */
.google-login-top {
    margin-bottom: 20px;
}

.google-login-bottom {
    margin-top: 20px;
}
