body {
    background-color: #fff;
}

#auth {
    height: 100vh;
    overflow-x: hidden;
}

#auth #auth-right {
    position: relative;
    height: 100%;
    background: url(../../images/bg/auth-bg.jpg) center/cover no-repeat;
    overflow: hidden;
}

#auth-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(205, 144, 71, 0.6),
        rgba(228, 133, 17, 0.6)
    );
    backdrop-filter: blur(1px);
    background-color: rgb(255 155 0 / 10%);
}

/* #auth #auth-left için mevcut stili değiştirin */
#auth #auth-left {
    padding: 0; /* Sabit padding yerine dinamik hizalama kullanacağız */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikey ortalama */
    align-items: center; /* Yatay ortalama */
    height: 100%; /* Tam yükseklik */
}

/* İçeriği sınırlamak için yeni bir konteyner ekleyin */
#auth #auth-left .auth-container {
    width: 80%;
    max-width: 450px; /* İçeriğin maksimum genişliği */
}

#auth #auth-left .auth-subtitle {
    font-size: 1.7rem;
    line-height: 2.5rem;
    color: #a8aebb;
}

#auth #auth-left .auth-logo {
    margin-bottom: 7rem;
}

#auth #auth-left .auth-logo img {
    height: 8rem;
}

@media screen and (max-width: 767px) {
    #auth #auth-left {
        padding: 5rem;
    }
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #5f6368;
    border-radius: 0.3rem;
    border: 1px solid #dadce0;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    background-color: #f7f7f7;
}

.google-btn i {
    margin-right: 10px;
}

.google-btn .google-icon {
    border-radius: 50%;
    padding: 4px;
    color: white;
}

.google-btn img {
    width: 30px;
    height: 30px;
}

.or-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.or-divider {
    flex: 1;
    border: 1px solid #969494;
}

.or-text {
    padding: 0 10px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
}

.captcha-container {
    margin: 0 auto;
    transform-origin: center;
}

.g-recaptcha {
    margin: 0 auto;
}

@media screen and (max-width: 370px) {
    .captcha-container {
        transform: scale(0.85);
        margin-left: -15px;
    }
}
