.member_form_container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 1px 1px 5px gray;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .auth-layout-wrap .auth-content {
        min-width: 340px;
    }
}

.auth-layout-wrap .auth-content {
    margin: auto;
}

.auth-layout-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
}

.member_card {
    width: 95%;
    max-width: 600px;
    min-height: 50px;
    /* overflow: hidden; */
    padding: 1rem
}

.member_card_header {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    margin: 1rem 0;
}

.member_card_header img {
    max-width: 200px;
    margin-bottom: 0.5rem;
}

.member_card_header h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.member_form_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.member_card_footer {
    display: flex;
    margin: 1rem 0;
}

.input_icon_container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    font-weight: bold;
    color: white;
    border-radius: 0.25rem;
    background-color: var(--primary_color);
    color: white;
    border: 1px solid transparent;
    margin: 0 0.1rem;
    font-size: 1.2rem
}

@media screen and (max-width:700px) {
    .member_card_header img {
        max-width: 100px;
    }

    .member_card_header h1 {
        font-size: 1rem;

    }
}