.akti-login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #f7f3e8;
    background-image:
        linear-gradient(rgba(247, 243, 232, 0.13), rgba(180, 180, 180, 0.13)),
        url("/img/background-image.png");
    background-repeat: repeat;
}

.akti-login-card {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 960px;
    background: #fff;
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

@media (min-width: 1024px) {
    .akti-login-card {
        grid-template-columns: 420px 1fr;
    }
}

.akti-login-header {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #74292a 0%, #9c3d3e 100%);
    color: #fff;
    padding: 0.8rem 1.25rem;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.akti-login-header-logo {
    height: 2.5rem;
    width: auto;
}

.akti-login-form {
    padding: 1.25rem 1.75rem 3rem;
    max-width: 380px;
    margin-inline: 0;
}

.akti-login-photo {
    display: none;
    background-color: transparent;
    padding: 0.75rem 0.75rem 0.75rem 0.25rem;
    height: 95%;
}

@media (min-width: 1024px) {
    .akti-login-photo {
        display: block;
    }
}

.akti-login-photo-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.akti-login-photo-track img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    border-radius: 0.2rem;
}

.akti-login-photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: #74292a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition:
        background-color 0.15s ease,
        transform 0.15s ease;
}

.akti-login-photo-nav svg {
    width: 1.25rem;
    height: 1.25rem;
}

.akti-login-photo-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.akti-login-photo-nav-prev {
    left: 0.75rem;
}

.akti-login-photo-nav-next {
    right: 0.75rem;
}

.akti-login-footer {
    grid-column: 1 / -1;
    padding: 0.875rem 1.25rem;
    text-align: center;
    font-size: 0.92rem;
    color: #333330;
    border-top: 1px solid #eee;
}

.akti-help-box {
    margin-top: 1.5rem;
    padding: 0.875rem 1rem;
    background-color: #eaf3fb;
    border-left: 3px solid #4e97d1;
    border-radius: 0.375rem;
    color: #333;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.akti-help-box strong {
    color: #3e77b6;
}

.akti-remember-row > div {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: center;
}

.akti-remember-row > div > div:last-child {
    text-align: right;
}

.akti-forgot-link {
    color: #4e97d1;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
}

.akti-forgot-link:hover {
    color: #3e77b6;
    text-decoration: underline;
}

.akti-fp-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    padding: 2.25rem 2rem 2rem;
}

.akti-fp-page-icon {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    padding: 0.5rem;
}

.akti-fp-title-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.akti-fp-title-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #74292a 0%, #9c3d3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 10px rgba(116, 41, 42, 0.3);
}

.akti-fp-title-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.akti-fp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.01em;
    margin: 0;
}

.akti-fp-step-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.15rem 0 0;
}

.akti-fp-resend {
    text-align: center;
    margin-top: 0.75rem;
}

.akti-fp-back-link {
    margin-top: 1.5rem;
    text-align: center;
}

.akti-fp-help-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #6b7280;
    text-align: center;
}

.dark .akti-fp-help-note {
    color: #9ca3af;
}
