/* ============================================
   LOGIN PAGE — overrides on top of
   frontpages_shared.css
   ============================================ */

/* Password toggle button */
.password-wrapper {
    position: relative;
}

.password-wrapper input,
.password-wrapper .form-control {
    padding-right: 44px;
}

.toggle-pw {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}
.toggle-pw:hover { color: #4f2d9e; }

/* Wider left panel on desktop */
@media (min-width: 841px) {
    .left-panel { flex: 0 0 42%; }
    .feature-list { display: flex; } /* show features on desktop */
}

/* Register option cards */
.action-links {
    display: flex;
    gap: 10px;
}

.link-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    color: inherit;
    transition: all 0.2s;
    border: 1.5px solid #e5e7eb;
}

.link-card:hover {
    border-color: #4f2d9e;
    background: #faf8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79,45,158,0.1);
}

.link-card i { font-size: 20px; flex-shrink: 0; }
.link-card.employee i { color: #4f2d9e; }
.link-card.company  i { color: #059669; }
.link-card span { color: #374151; line-height: 1.4; }
.link-card strong { color: #1a1a2e; }

@media (max-width: 480px) {
    .action-links { flex-direction: column; }
}
