.atl-wrap {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    font-family: 'Manrope', sans-serif;
    background: #f5f3ef;
}

.atl-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    width: 100%;
    max-width: 440px;
    border: 1px solid #e8e0d8;
}

/* ── HEADER ── */
.atl-header {
    text-align: center;
    margin-bottom: 36px;
}

.atl-logo {
    max-height: 60px;
    width: auto;
    margin: 0 auto 24px;
    display: block;
}

.atl-title {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-style: italic;
}

.atl-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

/* ── ERROR ── */
.atl-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #E84855;
    margin-bottom: 24px;
    text-align: center;
}

/* ── FORM ── */
.atl-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.atl-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.atl-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.atl-input-wrap {
    position: relative;
}

.atl-input {
    width: 100%;
    background: #f9f7f5;
    border: 1px solid #d4ccc0;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #1a1a1a;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
}

.atl-input-wrap .atl-input {
    padding-right: 48px;
}

.atl-input:focus {
    border-color: #4E635A;
    background: #fff;
}

.atl-input::placeholder {
    color: #bbb;
}

.atl-toggle-pw {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.atl-toggle-pw:hover { color: #4E635A; }

/* ── ROW ── */
.atl-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -4px;
}

.atl-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.atl-remember input {
    accent-color: #4E635A;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.atl-forgot {
    font-size: 12px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.atl-forgot:hover { color: #4E635A; }

/* ── BUTTON ── */
.atl-btn {
    background: #4E635A;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s ease, transform 0.2s ease;
    margin-top: 4px;
}

.atl-btn:hover {
    background: #3d4f47;
    transform: translateY(-1px);
}

.atl-btn:active {
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    .atl-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
    .atl-title { font-size: 20px; }
}
