@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);
}
