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

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

.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

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

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

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

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

.auth-success {
    background: #f0f5f3;
    border: 1px solid #c8ddd6;
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    color: #4E635A;
    text-align: center;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.auth-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;
}

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

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

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

.auth-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;
}

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

.auth-btn {
    display: block;
    width: 100%;
    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;
    text-decoration: none;
    text-align: center;
    margin-top: 4px;
}

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

.auth-footer {
    text-align: center;
    margin-top: 8px;
}

.auth-link {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-link:hover { color: #4E635A; }

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