.header-menu a,
.member-menu,
.member-menu span {
    color: #1f1f1f;
}

#footer-placeholder {
    display: none;
}

.login-section {
    background: #fff;
}

.login-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 180px;
}

.login-hero {
    position: relative;
    overflow: hidden;
}

.login-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    color: #f8f8f8;
    text-align: center;
}

.hero-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
}

.hero-quote {
    font-size: 16px;
    line-height: 1.4;
}

.login-panel {
    max-width: 480px;
    align-self: center;
}

.panel-head .head-accent {
    display: block;
    width: 46px;
    height: 5px;
    background: var(--main-color);
    margin-bottom: 40px;
}

.login-panel h2 {
    font-size: 34px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.panel-desc {
    color: #1f1f1f;
    line-height: 1.5;
    font-size: 20px;
    word-break: keep-all;
}

.login-form {
    margin-top: 55px;
}

.input-group {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.input-group input {
    width: 100%;
    height: 56px;
    padding-left: 50px;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    outline: 0;
    font-size: 20px;
    color: #1f1f1f;
    background: #eeeeee;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 39px;
    height: 39px;
}

.check-remember {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f1f1f;
    font-size: 20px;
    margin: 10px 0 32px;
}

.check-remember input {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--main-color);
    background: #eeeeee;
    border-radius: 3px;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.check-remember input:checked {
    background: var(--main-color);
}

.check-remember input:checked::after {
    content: "";
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.btn-login {
    width: 100%;
    height: 56px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    color: #f8f8f8;
    font-size: 20px;
    font-weight: 600;
    background: var(--main-color);
    transition: transform 0.08s ease, box-shadow 0.2s ease;
}

.panel-links {
    margin-top: 32px;
    color: #1f1f1f;
    font-size: 20px;
    text-align: center;
}

.panel-links a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 20px;
    margin-top: 15px;
    display: block;
}

.panel-links a:hover {
    text-decoration: underline;
}

@media (max-width: 1600px) {
    .login-container {
        gap: 50px;
    }
}

@media (max-width: 1500px) {
    .login-hero {
        display: none;
    }

    .login-container {
        grid-template-columns: 1fr;
    }

    .login-panel {
        margin: 120px auto 50px;
    }
}

@media (max-width: 1024px) {
    .menu-toggle span {
        background: #111111;
    }

    .login-panel {
        padding: 0 20px;
    }
}

@media (max-width: 450px) {
    .login-panel {
        margin: 120px auto 0;
    }

    .panel-head .head-accent {
        width: 40px;
        height: 2px;
        margin-bottom: 20px;
    }

    .login-panel h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .panel-desc {
        font-size: 14px;
    }

    .login-form {
        margin-top: 40px;
    }

    .input-group {
        margin-bottom: 20px;
    }

    .input-group input {
        height: 50px;
        font-size: 14px;
        padding-left: 45px;
    }

    .input-icon {
        width: 30px;
        height: 30px;
    }

    .input-icon img {
        width: 30px;
    }

    .check-remember input {
        width: 18px;
        height: 18px;
    }

    .check-remember {
        font-size: 14px;
        gap: 10px;
    }

    .btn-login {
        font-size: 16px;
        height: 54px;
    }

    .panel-links {
        font-size: 14px;
    }

    .panel-links a {
        font-size: 14px;
        margin-top: 10px;
    }
}