/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}
*:focus {
    outline: none;
}

body {
    font-family: 'OGothamSSm', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-field label {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 5px;
}

.form-field input {
    border: solid 1px #e3e3e3;
    height: 40px;
    padding: 5px 10px;
}

.form-button {
    color: #000;
    font-family: 'OGothamSSm', sans-serif;
    padding: 10px 17px 10px 18px;
    opacity: 0.9;
    min-width: 40px;
    background-color: #eef0ea;
    border: 2px solid #a9a9a9;
}

.member-form-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
}

.member-form-wrap {
    max-width: 458px;
    width: 100%;
    text-align: center;
}

.member-info-wrap {
    color: #4a4a4a;
}

.member-avatar {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: cover;
    display: block;
    margin: 0 auto 5px;
}

.member-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.member-info {
    font-size: 12px;
}

.member-form-info {
    padding: 20px 0;
    font-size: 16px;
}

.member-form .form-field:last-child {
    margin-bottom: 40px;
}

.mobile-view {
    display: none;
}

.desktop-view {
    display: block;
}

/* Media queries */
@media screen and (max-width: 600px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }
}
