#login-form {
    margin-bottom: 0px;
}

.login-card {
    background: var(--bg-nav-form);
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    margin-bottom: 30px;
}

.login-card-title {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: var(--login-card-title-color);
    padding: 10px;
}

.input-username, .input-password {
    width: 100%;
    height: 40px;
}

.btn.login-btn {
    background-color: var(--bg-black);
    height: 36px;
    border-radius: 8px;
    font-family: 'Public Sans';
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-white);
}

.btn.login-btn:hover {
    background-color: var(--bg-black);
}

.login-card-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.login-card-footer a {
    color: var(--color-white);
    text-decoration: none;
    font-family: 'Pretendard';
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
}