.auth-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

.auth-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 70vh; /* Use min-height for responsiveness */
    flex-direction: column; /* Stack items for mobile */
    align-items: center; /* Center items for mobile */
}

.auth-image-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Center image in container on mobile */
    width: 100%; /* Image container takes full width on mobile */
    margin-bottom: 20px; /* Add space below image on mobile */
}

.auth-image {
    height:  50vh;
    max-width: 80%; /* Ensure image is not too wide on mobile */
    transform: rotate(0deg); /* Remove rotation on mobile */
    position: static; /* Remove absolute positioning on mobile */
    left: auto; /* Reset left position */
    opacity: 1; /* Ensure image is visible */
    transition: none; /* Disable transitions on mobile */
    animation: none; /* Disable animation on mobile */
}


.auth-content {
    flex: 1;
    margin-left: 0; /* Remove left margin on mobile */
    width: 100%; /* Content takes full width on mobile */
    align-items: center; /* Center content on mobile */
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center; /* Center text on mobile */
}

.auth-form {
    margin-top: 20px;
}

.auth-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.auth-form-button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.auth-social-login {
    margin-top: 20px;
    text-align: center;
}

.auth-social-icon {
    display: inline-block;
    margin: 0 5px;
}

.auth-signup-link {
    margin-top: 20px;
    text-align: center;
}

.google-signup-button {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
}

.google-signup-button:hover {
    background-color: #f0f0f0;
}

.google-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.dark-mode-toggle-container{
    position: absolute;
    top: 10px;
    right: 10px;
}

#dark-mode-toggle{
    background-color: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.auth-container.dark-mode {
    background-color: #333;
    color: #fff;
}

.auth-card.dark-mode {
    background-color: #444;
    color: #fff;
}

/* Media query for desktop (and larger tablets, if needed) */
@media (min-width: 1300px) {
    
.auth-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 65vh;
}

.auth-image-container {
    position: absolute;
    left: -25vw; /* Adjust as needed */
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.auth-image {
    height: 100%;
    max-width: none;
    transform: rotate(30deg);
    position: relative;
    left: -15vw; /* Initial position off-screen */
    opacity: 0; /* Initial opacity */
    transition: left 1s ease-in-out, opacity 1s ease-in-out; /* Transition for animation */
    animation: slideIn 1s forwards; /* Apply animation */
}

@keyframes slideIn {
    to {
        left: -0vw; /* Final position */
        opacity: 1; /* Final opacity */
    }
}


.auth-content {
    flex: 1;
    margin-left: 30%;
    width: 65vw;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

}
