.form-fields {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.fullpage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(90deg, #e2e2e2, #c9d6ff)
}

.responsive-center-box {
    min-height: max-content;
    padding: 3.2rem;
    background-color: var(--nav-color);
    color: var(--pure-white);
    margin: auto;
    border-radius: 0.8rem;
    box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.2);
    max-width: 75rem;
    width: 90%;

    /* inside-element settings */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
}

.responsive-center-box > section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0.8rem;
    width: max-content;
}

.desc-box {
    justify-content: center;
    align-items: center;
}

.desc-box img {
    max-width: 28rem;
    max-height: 12rem;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 0.8rem;
}

.btn-group {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
}

.btn-member {
    flex: 1 1 50%;
}

/* Tablet View */
@media screen and (max-width: 768px) {
}

/* mobile view */
@media screen and (max-width: 600px) {
    .fullpage {
        display: inline;
    }

    .responsive-center-box {
        flex-direction: column;
        margin-top: 1.2rem;
    }

    section {
        min-width: 100%;
        max-width: 100%;
    }

    .desc-box .title {
        align-items: center;
        text-align: center;
    }

    .desc-box img {
        max-width: 100%;
        height: auto;
    }
}
