@media (max-width: 991px) {
    .image-wrapper img,
    .image-wrapper {
        display: none;
    }
}

.image-wrapper {
   display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 12px;
}

.auth-container h1 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 600;
    color: var(--black);
}

.auth-container p {
    font-size: clamp(0.9rem, 1.25vw, 1rem);
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 400;
    color: var(--gray);
}

.auth-container span {
    color: rgba(240, 68, 56, 1);
}

.forgot-password {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    color: var(--green);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.25rem 0;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: clamp(12px, 1vw, 14px);
    color: #3c4043;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}
    
    

.btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
    color: #3c4043;
}

.btn-google:focus-visible {
    outline: 2px solid rgba(47, 168, 79, 0.45);
    outline-offset: 2px;
}
