/* Account Pages Styling (standalone pages like Reset Password, Confirm Email) */
:root {
  --acc-ink: #0A0A0A;
  --acc-ink-2: #6E6E73;
  --acc-ink-3: #A1A1A6;
  --acc-border: #EDEDED;
  --acc-border-2: #DCDCDC;
  --acc-bg: #EBEBEE;
  --acc-section-bg: #FAFAFA;
  --acc-muted-tint: #F2F2F4;
  --acc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.account-page-main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
}

.account-card {
    position: relative;
    width: 100%;
    max-width: 26.25rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 1.375rem;
    padding: 2.375rem 2rem 2rem;
    box-shadow: rgba(20, 25, 40, 0.06) 0 0.0625rem 0.125rem, 
                rgba(20, 25, 40, 0.18) 0 1.5rem 4rem, 
                rgba(20, 25, 40, 0.12) 0 3.5rem 7rem;
    text-align: center;
    animation: accRise 0.4s var(--acc-ease);
}

.account-brand {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 1.375rem;
    color: var(--acc-ink);
}

.account-brand svg {
    width: 100%;
    height: 100%;
    display: block;
}

.account-title {
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: -0.028em;
    line-height: 1.18;
    margin-bottom: 0.5rem;
    color: var(--acc-ink);
}

.account-sub {
    font-size: 0.84375rem;
    color: var(--acc-ink-2);
    letter-spacing: -0.008em;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.account-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.account-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--acc-ink);
    padding-left: 0.25rem;
}

.account-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid var(--acc-border-2);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 0.90625rem;
    letter-spacing: -0.008em;
    color: var(--acc-ink);
    outline: none;
    transition: border-color 0.18s var(--acc-ease), box-shadow 0.18s var(--acc-ease);
}

.account-input:focus {
    border-color: var(--acc-ink);
    box-shadow: rgba(10, 10, 10, 0.06) 0 0 0 0.25rem;
}

.account-submit {
    position: relative;
    width: 100%;
    padding: 0.875rem;
    background: rgb(10, 10, 10);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    text-decoration: none;
    transition: background 0.2s var(--acc-ease), transform 0.3s var(--acc-ease);
}

.account-submit:hover {
    background: rgb(26, 26, 26);
    transform: translateY(-0.0625rem);
    color: white;
}

.account-link-row {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--acc-border);
    font-size: 0.78125rem;
    color: var(--acc-ink-2);
}

.account-link {
    color: var(--acc-ink);
    font-weight: 500;
    text-decoration: none;
    margin-left: 0.25rem;
}

.account-link:hover {
    text-decoration: underline;
}

.account-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.375rem;
    border-radius: 50%;
    background: var(--acc-section-bg);
    border: 1px solid var(--acc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acc-ink);
}

.account-icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
}

@keyframes accRise {
    0% { opacity: 0; transform: translateY(0.625rem) scale(0.988); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
    .account-card {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 1.25rem;
    }
    .account-title {
        font-size: 1.25rem;
    }
}
