.member-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 60px 0 160px;
}

/* =========================
   Login & Join Box
========================= */
.login-box,
.join-box {
    padding: 12px;
    border-radius: 12px;
    color: #333;
    position: relative;
    top: -1em;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
}

.login-box {
    width: 360px;
}

.join-box {
    width: 60%;
}

/* =========================
   Form Elements
========================= */
.login-box input:not([type="checkbox"]):not([type="radio"]),
.join-box input:not([type="checkbox"]):not([type="radio"]),
.login-box select,
.login-box textarea,
.join-box select,
.join-box textarea {
    width: 100%;
    max-width: 100%;
    height: 40px;
    padding: 0.6em;
    font-size: 1em;
    font-family: Arial, sans-serif;
    border: 1px solid #909090;
    border-radius: 6px;
    box-sizing: border-box;
}

.login-box textarea,
.join-box textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

.login-box input:focus,
.login-box select:focus,
.login-box textarea:focus,
.join-box input:focus,
.join-box select:focus,
.join-box textarea:focus {
    border-color: var(--primary);
    outline: none;
}

/* =========================
   Small Form Controls
========================= */
.form-control-sm {
    width: 100%;
    padding: 0.4em !important;
    font-size: 1em;
}

/* =========================
   Buttons
========================= */
button,
.btn,
.btn-sm,
button.btn-sm {
    border-radius: 6px !important;
}

/* =========================
   Blink Text
========================= */
.blink-text {
    animation: blinkText 1s infinite;
}

@keyframes blinkText {
    0%, 49% {
        color: #009b5c;
    }
    50%, 100% {
        color: #ffc0c0;
    }
}

/* =========================
   Responsive
========================= */
@media (max-width: 820px) {

    .member-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .login-box,
    .join-box {
        width: 95%;
    }
}