.login-page {
    min-height: 100vh;
    background: #dfe6ef;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: #20a455;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
}

.login-card {
    position: relative;
    z-index: 2;
    width: 320px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
    padding: 62px 20px 24px;
}

.login-avatar {
    width: 84px;
    height: 84px;
    background: #20a455;
    border-radius: 50%;
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px;
    box-shadow: 0 6px 14px rgba(0,0,0,.16);
}

.login-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
}

.login-card h1 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 28px;
    color: #111827;
}

.login-form label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.login-form input {
    width: 100%;
    height: 44px;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    padding: 0 14px;
    background: #eef3fb;
    margin-bottom: 18px;
    outline: none;
}

.password-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    background: #eef3fb;
    margin-bottom: 22px;
    overflow: hidden;
}

.password-wrap input {
    margin-bottom: 0;
    border: none;
    background: transparent;
}

.password-wrap button {
    width: 48px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #20a455;
}

.btn-login {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: #30d26c;
    color: #0b1f12;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-links {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
}