/**
 * HC Login Pro - 로그인/회원가입 폼 디자인 (fix/hc-login-pro-design_1.html 기준)
 * HCIoyn Design System v4.0 — 정밀 적용
 */

/* 로그인·회원가입·비밀번호 재설정 공통 Design v4 토큰 */
.hc-login-form-wrapper,
.hc-register-form-wrapper,
.hc-reset-form-wrapper {
    --hc-login-primary: #4541FF;
    --hc-login-primary-dk: #3733DC;
    --hc-login-primary-lt: rgba(69, 65, 255, 0.08);
    --hc-login-text-dark: #1E1E2E;
    --hc-login-text-body: #64748B;
    --hc-login-text-light: #94A3B8;
    --hc-login-border: #E2E8F0;
    --hc-login-bg: #F6F7FD;
    --hc-login-radius-sm: 8px;
    --hc-login-radius-lg: 24px;
    --hc-login-shadow-lg: 0 8px 40px rgba(69,65,255,.16), 0 2px 8px rgba(0,0,0,.08);
    --hc-login-space-xs: 0.25rem;
    --hc-login-space-sm: 0.5rem;
    --hc-login-space-md: 1rem;
    --hc-login-text-sm: 0.875rem;
    --hc-login-text-base: 1rem;
    --hc-login-text-xl: 1.375rem;
    --hc-login-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 래퍼: 패딩·레이아웃은 여기서만 정의(forms.css padding-top:0 방해 제거됨) */
.hc-login-form-wrapper,
.hc-register-form-wrapper,
.hc-reset-form-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    padding-top: 1.5rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hc-login-form-wrapper::before,
.hc-register-form-wrapper::before,
.hc-reset-form-wrapper::before {
    content: none;
    display: none;
}
.hc-login-form-wrapper .hc-card,
.hc-register-form-wrapper .hc-card,
.hc-reset-form-wrapper .hc-card {
    position: relative;
    z-index: 1;
}

/* 회원가입 폼만 상단 패딩 0 */
.hc-register-form-wrapper.hc-form-wrapper {
    padding-top: 0;
}

/* 비밀번호 찾기(재설정) 페이지 외곽 좌우 10px */
.hc-reset-form-wrapper.hc-form-wrapper {
    padding-left: 10px;
    padding-right: 10px;
}

.hc-login-form-wrapper:focus-within,
.hc-register-form-wrapper:focus-within,
.hc-reset-form-wrapper:focus-within {
    border-color: transparent !important;
    box-shadow: none !important;
}

/* 카드 — 로그인·회원가입·비밀번호재설정 공통. 애니메이션 짧게 해서 폼이 빨리 나오도록 */
.hc-login-form-wrapper .hc-card.hc-card-login,
.hc-register-form-wrapper .hc-card.hc-card-register,
.hc-reset-form-wrapper .hc-card.hc-card-reset {
    background: #fff;
    border-radius: var(--hc-login-radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.06);
    padding: 1.75rem;
    width: 100%;
    max-width: 100%;
    position: relative;
    border: none;
    animation: hc-cardIn .1s cubic-bezier(.34,1.4,.64,1) both;
}
@media (min-width: 480px) {
    .hc-login-form-wrapper .hc-card.hc-card-login,
    .hc-register-form-wrapper .hc-card.hc-card-register,
    .hc-reset-form-wrapper .hc-card.hc-card-reset {
        padding: 2.25rem;
    }
}

@keyframes hc-cardIn {
    from { opacity: 0; transform: translateY(24px) scale(.97); }
    to   { opacity: 1; transform: none; }
}

/* 카드 내부 리셋 — 테마 margin/padding 제거 */
.hc-login-form-wrapper .hc-card h1,
.hc-login-form-wrapper .hc-card p,
.hc-register-form-wrapper .hc-card h1,
.hc-register-form-wrapper .hc-card p,
.hc-reset-form-wrapper .hc-card h1,
.hc-reset-form-wrapper .hc-card p {
    margin: 0;
    padding: 0;
}
.hc-login-form-wrapper .hc-card form,
.hc-register-form-wrapper .hc-card form,
.hc-reset-form-wrapper .hc-card form {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

/* 카드 상단 브랜드 — 로고와 제목 한 줄 (로고 옆 로그인 / 로고 옆 회원가입) */
.hc-login-form-wrapper .hc-card .hc-card-brand,
.hc-register-form-wrapper .hc-card .hc-card-brand,
.hc-reset-form-wrapper .hc-card .hc-card-brand {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    margin-bottom: var(--hc-login-space-md) !important;
}
.hc-login-form-wrapper .hc-card .hc-card-brand .hc-card-title,
.hc-register-form-wrapper .hc-card .hc-card-brand .hc-card-title,
.hc-reset-form-wrapper .hc-card .hc-card-brand .hc-card-title {
    margin: 0 !important;
    white-space: nowrap !important;
}

.hc-login-form-wrapper .hc-card-logo,
.hc-register-form-wrapper .hc-card-logo,
.hc-reset-form-wrapper .hc-card-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.hc-login-form-wrapper .hc-card-logo img,
.hc-register-form-wrapper .hc-card-logo img,
.hc-reset-form-wrapper .hc-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hc-login-form-wrapper .hc-card-title,
.hc-register-form-wrapper .hc-card-title,
.hc-reset-form-wrapper .hc-card-title {
    font-size: var(--hc-login-text-xl);
    font-weight: 800;
    color: var(--hc-login-text-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
}

.hc-login-form-wrapper .hc-card-subtitle,
.hc-register-form-wrapper .hc-card-subtitle {
    font-size: var(--hc-login-text-sm);
    color: var(--hc-login-text-body);
    text-align: center;
    margin: 0;
}

/* 비밀번호 재설정 — 안내 문구 */
.hc-reset-form-wrapper .hc-reset-description {
    font-size: var(--hc-login-text-sm);
    color: var(--hc-login-text-body);
    margin: 0 0 var(--hc-login-space-sm);
    line-height: 1.5;
}

/* 폼 레이아웃 — 샘플 gap */
.hc-login-form-wrapper .hc-form,
.hc-register-form-wrapper .hc-form,
.hc-reset-form-wrapper .hc-form {
    display: flex;
    flex-direction: column;
    gap: var(--hc-login-space-sm);
    margin: 0;
}

.hc-login-form-wrapper .hc-field,
.hc-register-form-wrapper .hc-field,
.hc-reset-form-wrapper .hc-field {
    display: flex;
    flex-direction: column;
    gap: .375rem;
}

.hc-login-form-wrapper .hc-label,
.hc-register-form-wrapper .hc-label,
.hc-reset-form-wrapper .hc-label {
    font-size: var(--hc-login-text-sm);
    font-weight: 600;
    color: var(--hc-login-text-dark);
    display: flex;
    align-items: center;
    gap: .25rem;
    margin: 0;
}
.hc-login-form-wrapper .hc-label .required,
.hc-register-form-wrapper .hc-label .required,
.hc-reset-form-wrapper .hc-label .required {
    color: var(--hc-login-primary);
}

/* 입력 래퍼 + 아이콘 */
.hc-login-form-wrapper .hc-input-wrap,
.hc-register-form-wrapper .hc-input-wrap,
.hc-reset-form-wrapper .hc-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.hc-login-form-wrapper .hc-input-wrap .material-icons:first-of-type,
.hc-register-form-wrapper .hc-input-wrap .material-icons:first-of-type,
.hc-reset-form-wrapper .hc-input-wrap .material-icons:first-of-type {
    position: absolute;
    left: .875rem;
    color: var(--hc-login-text-light);
    font-size: 1.125rem;
    pointer-events: none;
    transition: color var(--hc-login-transition);
}

.hc-login-form-wrapper .hc-input-wrap .hc-form-input,
.hc-login-form-wrapper .hc-input-wrap .hc-input,
.hc-register-form-wrapper .hc-input-wrap .hc-form-input,
.hc-register-form-wrapper .hc-input-wrap .hc-input,
.hc-reset-form-wrapper .hc-input-wrap .hc-form-input,
.hc-reset-form-wrapper .hc-input-wrap .hc-input {
    width: 100%;
    padding: 0.75rem 0.875rem 0.75rem 2.625rem;
    border: 1.5px solid var(--hc-login-border);
    border-radius: var(--hc-login-radius-sm);
    font-family: inherit;
    font-size: var(--hc-login-text-base);
    color: var(--hc-login-text-dark);
    background: #fff;
    transition: border-color var(--hc-login-transition), box-shadow var(--hc-login-transition);
    outline: none;
    height: auto;
    min-height: 48px;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.hc-login-form-wrapper .hc-input-wrap .hc-form-input:focus,
.hc-login-form-wrapper .hc-input-wrap .hc-input:focus,
.hc-register-form-wrapper .hc-input-wrap .hc-form-input:focus,
.hc-register-form-wrapper .hc-input-wrap .hc-input:focus,
.hc-reset-form-wrapper .hc-input-wrap .hc-form-input:focus,
.hc-reset-form-wrapper .hc-input-wrap .hc-input:focus {
    border-color: var(--hc-login-primary);
    box-shadow: 0 0 0 3px rgba(69,65,255,.12);
}

.hc-login-form-wrapper .hc-input-wrap:focus-within .material-icons:first-of-type,
.hc-register-form-wrapper .hc-input-wrap:focus-within .material-icons:first-of-type,
.hc-reset-form-wrapper .hc-input-wrap:focus-within .material-icons:first-of-type {
    color: var(--hc-login-primary);
}

.hc-login-form-wrapper .hc-input-wrap .hc-form-input::placeholder,
.hc-login-form-wrapper .hc-input-wrap .hc-input::placeholder,
.hc-register-form-wrapper .hc-input-wrap .hc-form-input::placeholder,
.hc-register-form-wrapper .hc-input-wrap .hc-input::placeholder,
.hc-reset-form-wrapper .hc-input-wrap .hc-form-input::placeholder,
.hc-reset-form-wrapper .hc-input-wrap .hc-input::placeholder {
    color: var(--hc-login-text-light);
}

/* 로그인 옵션 행: 체크박스 + 비밀번호 찾기 */
.hc-login-form-wrapper .hc-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--hc-login-space-xs);
}

/* 회원가입: 필드 아래 도움말, 산수 캡차 */
.hc-register-form-wrapper .hc-help {
    font-size: var(--hc-login-text-sm);
    color: var(--hc-login-text-body);
    margin: 0;
}
.hc-register-form-wrapper .hc-math-row {
    display: flex;
    align-items: center;
    gap: .625rem;
}
.hc-register-form-wrapper .hc-math-question {
    font-weight: 800;
    font-size: var(--hc-login-text-base);
    color: var(--hc-login-primary);
    white-space: nowrap;
    background: var(--hc-login-primary-lt);
    padding: .5rem 1rem;
    border-radius: var(--hc-login-radius-sm);
}
.hc-register-form-wrapper .hc-math-row .hc-input,
.hc-register-form-wrapper .hc-math-row .hc-form-input {
    flex: 1;
    padding-left: .875rem;
}

.hc-login-form-wrapper .hc-check-label,
.hc-register-form-wrapper .hc-check-label {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    cursor: pointer;
    font-size: var(--hc-login-text-sm);
    color: var(--hc-login-text-body);
    line-height: 1.5;
    margin: 0;
}

.hc-login-form-wrapper .hc-check-label input[type=checkbox],
.hc-register-form-wrapper .hc-check-label input[type=checkbox] {
    display: none;
}

.hc-login-form-wrapper .hc-check-box,
.hc-register-form-wrapper .hc-check-box {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--hc-login-border);
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background var(--hc-login-transition), border-color var(--hc-login-transition);
}

.hc-login-form-wrapper .hc-check-label input:checked ~ .hc-check-box,
.hc-register-form-wrapper .hc-check-label input:checked ~ .hc-check-box {
    background: var(--hc-login-primary);
    border-color: var(--hc-login-primary);
}

.hc-login-form-wrapper .hc-check-box .material-icons,
.hc-register-form-wrapper .hc-check-box .material-icons {
    font-size: 13px;
    color: #fff;
    opacity: 0;
    transition: opacity var(--hc-login-transition);
}

.hc-login-form-wrapper .hc-check-label input:checked ~ .hc-check-box .material-icons,
.hc-register-form-wrapper .hc-check-label input:checked ~ .hc-check-box .material-icons {
    opacity: 1;
}

.hc-login-form-wrapper .hc-login-options .hc-link {
    font-size: var(--hc-login-text-sm);
    color: var(--hc-login-primary);
    font-weight: 600;
}

/* 로그인 / 회원가입 / 비밀번호 재설정 버튼 */
.hc-login-form-wrapper .hc-btn-login.hc-btn-primary,
.hc-register-form-wrapper .hc-btn-register.hc-btn-primary,
.hc-reset-form-wrapper .hc-btn-reset.hc-btn-primary {
    background: var(--hc-login-primary);
    color: #fff;
    width: 100%;
    box-shadow: 0 2px 12px rgba(69,65,255,.28);
    margin-top: var(--hc-login-space-xs);
    padding: 0.8125rem 1.5rem;
    border: none;
    border-radius: var(--hc-login-radius-sm);
    font-weight: 700;
    font-family: inherit;
    font-size: var(--hc-login-text-base);
    cursor: pointer;
}

.hc-login-form-wrapper .hc-btn-login.hc-btn-primary:hover:not(:disabled),
.hc-register-form-wrapper .hc-btn-register.hc-btn-primary:hover:not(:disabled),
.hc-reset-form-wrapper .hc-btn-reset.hc-btn-primary:hover:not(:disabled) {
    background: var(--hc-login-primary-dk);
    box-shadow: 0 4px 20px rgba(69,65,255,.38);
    transform: translateY(-1px);
}

.hc-login-form-wrapper .hc-btn-login.hc-btn-primary:active,
.hc-register-form-wrapper .hc-btn-register.hc-btn-primary:active,
.hc-reset-form-wrapper .hc-btn-reset.hc-btn-primary:active {
    transform: translateY(0);
}

.hc-login-form-wrapper .hc-btn-login.hc-btn-primary:disabled,
.hc-register-form-wrapper .hc-btn-register.hc-btn-primary:disabled,
.hc-reset-form-wrapper .hc-btn-reset.hc-btn-primary:disabled {
    background: #C7C6FF;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.hc-login-form-wrapper .hc-btn-login .material-icons,
.hc-register-form-wrapper .hc-btn-register .material-icons,
.hc-reset-form-wrapper .hc-btn-reset .material-icons {
    font-size: 1.125em;
}

/* 구분선 */
.hc-login-form-wrapper .hc-divider.hc-divider-text,
.hc-register-form-wrapper .hc-divider.hc-divider-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--hc-login-text-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: var(--hc-login-space-md) 0 var(--hc-login-space-sm);
    height: auto;
    background: none;
    border: none;
}

.hc-login-form-wrapper .hc-divider.hc-divider-text::before,
.hc-login-form-wrapper .hc-divider.hc-divider-text::after,
.hc-register-form-wrapper .hc-divider.hc-divider-text::before,
.hc-register-form-wrapper .hc-divider.hc-divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--hc-login-border);
}

/* 소셜 로그인 — 세로 3줄 (한 줄에 버튼 하나씩: 구글 / 애플 / 카카오) */
/* 감싸는 4각 박스 제거, 내부 패딩 0 */
.hc-login-form-wrapper #hc-social-login-container,
.hc-login-form-wrapper #hc-social-login-container .hc-social-login-wrap,
.hc-register-form-wrapper #hc-social-login-container,
.hc-register-form-wrapper #hc-social-login-container .hc-social-login-wrap {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.hc-login-form-wrapper #hc-social-login-container .hc-social-btn,
.hc-login-form-wrapper #hc-social-login-container a.hc-social-btn,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn,
.hc-register-form-wrapper #hc-social-login-container a.hc-social-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: var(--hc-login-radius-sm) !important;
    font-size: var(--hc-login-text-sm, 0.875rem) !important;
    font-weight: 600 !important;
    border: 1px solid var(--hc-login-border) !important;
    background: #fff !important;
    color: var(--hc-login-text-dark) !important;
    width: 100% !important;
    max-width: 320px !important;
    min-width: 0 !important;
    text-decoration: none !important;
    transition: all var(--hc-login-transition) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}
.hc-login-form-wrapper #hc-social-login-container .hc-social-btn span,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn span {
    white-space: nowrap !important;
}

.hc-login-form-wrapper #hc-social-login-container .hc-social-btn svg,
.hc-login-form-wrapper #hc-social-login-container .hc-social-btn img,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn svg,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn img {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

.hc-login-form-wrapper #hc-social-login-container .hc-social-btn:hover,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn:hover {
    background: #F8FAFC !important;
    border-color: #CBD5E1 !important;
    transform: translateY(-1px);
}

.hc-login-form-wrapper #hc-social-login-container .hc-social-btn-kakao,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn-kakao {
    background: #FEE500 !important;
    border-color: #FEE500 !important;
    color: #191919 !important;
}

.hc-login-form-wrapper #hc-social-login-container .hc-social-btn-kakao:hover,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn-kakao:hover {
    background: #F5DA00 !important;
    border-color: #F5DA00 !important;
}

.hc-login-form-wrapper #hc-social-login-container .hc-social-btn-apple,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn-apple {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.hc-login-form-wrapper #hc-social-login-container .hc-social-btn-apple:hover,
.hc-register-form-wrapper #hc-social-login-container .hc-social-btn-apple:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

/* 폼 푸터 */
.hc-login-form-wrapper .hc-form-footer,
.hc-register-form-wrapper .hc-form-footer,
.hc-reset-form-wrapper .hc-form-footer {
    text-align: center;
    font-size: var(--hc-login-text-sm);
    color: var(--hc-login-text-body);
    padding-top: var(--hc-login-space-md);
    margin: 0;
    border: none;
}

.hc-login-form-wrapper .hc-form-footer .hc-link,
.hc-register-form-wrapper .hc-form-footer .hc-link,
.hc-reset-form-wrapper .hc-form-footer .hc-link {
    color: var(--hc-login-primary);
    font-weight: 700;
}

.hc-login-form-wrapper .hc-form-footer .hc-link:hover,
.hc-register-form-wrapper .hc-form-footer .hc-link:hover,
.hc-reset-form-wrapper .hc-form-footer .hc-link:hover {
    opacity: .85;
    text-decoration: underline;
}

/* 기존 hc-form-links 숨김 */
.hc-login-form-wrapper .hc-form-links,
.hc-register-form-wrapper .hc-form-links,
.hc-reset-form-wrapper .hc-form-links {
    display: none;
}

.hc-register-form-wrapper .hc-check-label .hc-terms-open.hc-terms-link {
    color: var(--hc-login-primary);
}

/* 비밀번호 재설정 — 로그인으로 돌아가기 링크 스타일 */
.hc-reset-form-wrapper .hc-form-footer .hc-link-plain {
    color: var(--hc-login-text-body);
    font-weight: 600;
}
.hc-reset-form-wrapper .hc-form-footer .hc-link-plain:hover {
    color: var(--hc-login-primary);
}

@media (max-width: 640px) {
    /* 모바일: 로그인 상단 30px, 회원가입 상단 0 */
    .hc-login-form-wrapper,
    .hc-register-form-wrapper,
    .hc-reset-form-wrapper {
        padding: 30px 10px 1rem;
        padding-top: 30px;
        min-height: 40vh;
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    .hc-register-form-wrapper.hc-form-wrapper {
        padding-top: 0;
    }
    .hc-login-form-wrapper .hc-card.hc-card-login,
    .hc-register-form-wrapper .hc-card.hc-card-register,
    .hc-reset-form-wrapper .hc-card.hc-card-reset {
        padding: 1.5rem 0.75rem;
    }
    .hc-login-form-wrapper #hc-social-login-container .hc-social-btn,
    .hc-register-form-wrapper #hc-social-login-container .hc-social-btn {
        padding: 0.45rem 0.65rem !important;
        font-size: 0.8125rem !important;
    }
    .hc-login-form-wrapper #hc-social-login-container .hc-social-btn svg,
    .hc-login-form-wrapper #hc-social-login-container .hc-social-btn img,
    .hc-register-form-wrapper #hc-social-login-container .hc-social-btn svg,
    .hc-register-form-wrapper #hc-social-login-container .hc-social-btn img {
        width: 18px !important;
        height: 18px !important;
    }
}

/* ========================================
   비밀번호 재설정 폼 — 강제 오버라이드 (테마/다른 CSS 덮어쓰기 방지)
   ======================================== */
.hc-reset-form-wrapper .material-icons {
    font-family: 'Material Icons' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 1.25em !important;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    -webkit-font-smoothing: antialiased;
}
.hc-reset-form-wrapper .hc-input-wrap {
    position: relative !important;
    display: flex !important;
    align-items: stretch !important;
}
.hc-reset-form-wrapper .hc-input-wrap .material-icons:first-of-type {
    position: absolute !important;
    left: .875rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--hc-login-text-light) !important;
    pointer-events: none !important;
    font-size: 1.25em !important;
}
.hc-reset-form-wrapper .hc-input-wrap .hc-form-input,
.hc-reset-form-wrapper .hc-input-wrap .hc-input {
    border: 1.5px solid var(--hc-login-border) !important;
    border-radius: var(--hc-login-radius-sm) !important;
    padding: 0.75rem 0.875rem 0.75rem 2.625rem !important;
    min-height: 48px !important;
}
.hc-reset-form-wrapper .hc-btn-reset .material-icons {
    font-size: 1.125em !important;
}
.hc-reset-form-wrapper .hc-form-footer .hc-link-plain .material-icons {
    font-size: 1em !important;
    vertical-align: -0.15em !important;
}
