.pic-form-container {
    display: flex;
    width: 100%;
    min-height: 100%;
}

.pic-side {
    display: flex;
    flex-direction: column;
    min-width: 50%;
    min-height: 100%;
    justify-content: center;
}

.pic-side-title {
    font-size: 2rem;
    padding: 5%;
}

.pic-side-title strong {
    color: rgb(187, 217, 255);
}

.pic-side img {
    width: 100%;
}

.form-side {
    min-width: 50%;
    min-height: 100%;
    height: auto;
    overflow: auto; /* scrolling still enabled */
    background-color: #1e1e1e;
    border: 1px solid #333;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    margin-bottom: 2%;

    /* Hide scrollbar - WebKit (Chrome, Safari, Edge) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.form-side::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.form-side .custom-form-side-label {
    opacity: 0.8;
    font-size: smaller;
    margin-bottom: 1%;
    font-weight: lighter;
}

.form-side .custom-form-side-label-2 {
    opacity: 0.8;
    font-size: smaller;
    margin-bottom: 1%;
    font-weight: bold;
}

@media (max-width: 801px) {
    .pic-form-container {
        flex-direction: column;
    }

    .pic-side {
        margin-top: 5%;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 100%;
        justify-content: center;
        align-items: center;
    }

    .pic-side img {
        width: 70%;
    }
}
