@import "../Fonts/fonts.css";

h1 {
    font-size: 3em;
    text-align: center;
    margin: 0.5em;
    word-wrap: break-word;
}

.membership_notice {
    width: 90%;
    background-color: #626262;
    margin: 1em auto;
    padding: 1em;
}

.membership_notice h2 {
    text-align: center;
}

.membership_notice table {
    width: max-content;
    margin: 0 auto;
    color: #fff;
    border-spacing: 10px 0;
    border-collapse: separate;
}

#family_notice li {
    margin-bottom: 1em;
}

form {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}

form input {
    margin-bottom: 1em;
}

.form_button {
    margin: 1em auto 0 auto;
    width: 100%;
}

form h2 {
    border-top: #000 solid 1px;
    padding-top: 1em;
}

#member_title_0 {
    border: none;
    padding: 0;
}

.remove_member_div {
    text-align: center;
    padding-bottom: 1em;
    margin-bottom: 3em;
    border-bottom: #000 solid 3px;
}

.non_submit {
    padding: 0.5em;
    width: 100%;
    background-color: #fff;
    color: #000;
    border: #000 solid 1px;
    margin: 1em auto 2em auto;
}

.non_submit:hover {
    background-color: #a6a6a6;
}

#add_member_div {
    width: 100%;
    margin: 0 auto 2em auto;
    text-align: center;
}

#add_member_button {
    width: 100%;
    margin-top: 0;
}

#city0 {
    margin-bottom: 3em;
}

#first_member_border {
    border-bottom: #000 solid 3px;
    margin-bottom: 3em;
}

@media screen and (min-width: 305px) {
    .form_button {
        width: 15em;
    }
}

@media screen and (min-width: 600px) {
    h1 {
        font-size: 3em;
    }

    .membership_notice {
        width: 33em;
    }

    form {
        width: 33em;
    }
}