.authpage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7f7f7;
}

.auth-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    flex-wrap: wrap;
}

.auth-left {
    flex: 1;
    background-color: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-right {
    flex: 1;
    padding: 40px;
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-left, .auth-right {
        flex: none;
        width: 100%;
    }

    .auth-left {
        display: none;
    }

    .auth-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .auth-right {
        padding: 20px;
    }

    .auth-title {
        font-size: 1.5rem;
    }
}