html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
}

.logo {
    position: absolute;
    top: 22px;
    left: 28px;
    font-size: 26px;
    font-weight: 700;
    color: #23272F;
    user-select: none;
    -webkit-user-select: none;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 330px;
    padding: 0;
    background: #fff;
}

.auth-form h2 {
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 24px;
}

.auth-form input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
    padding: 11px 14px;
    font-size: 15px;
    border: 1.5px solid #ced3d6;
    border-radius: 6px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.auth-form input:focus {
    border-color: #6fbe44;
}

.submit-btn {
    width: 100%;
    background: #18c139;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 16px;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #149f2e;
}

.bottom-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #676d76;
    gap: 4px;
}

.bottom-links a {
    color: #1677ff;
    text-decoration: none;
    margin-left: 4px;
}

.bottom-links .forgot {
    color: #1677ff;
    margin-left: 0;
}

.error {
    color: #eb5757;
    margin-bottom: 10px;
    font-size: 14px;
}

footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    border-top: 1px solid #ececec;
    background: #fff;
    padding: 12px 0 10px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: #a6a7ab;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    transition: color 0.15s;
    padding-bottom: 1px;
}

.footer-link:hover {
    color: #2d2f34;
}

.footer-link::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 1.5px;
    background: #a6a7ab;
    opacity: 0;
    transition: opacity 0.15s;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
}

.footer-link:hover::after {
    opacity: 1;
}
